diff --git a/src/aks-preview/HISTORY.md b/src/aks-preview/HISTORY.rst similarity index 95% rename from src/aks-preview/HISTORY.md rename to src/aks-preview/HISTORY.rst index b5424d49989..f7ff2814607 100644 --- a/src/aks-preview/HISTORY.md +++ b/src/aks-preview/HISTORY.rst @@ -3,10 +3,19 @@ Release History =============== -0.5.67 -++++++ -* Add support for csi drivers extensibility. +Guidance +++++++++ +If there is no rush to release a new version, please just add a description of the modification under the *Pending* section. + +To release a new version, please select a new version number (usually plus 1 to the minor of the current latest version number), and then add a new section named as the new version number in this file, the content should include the new modifications and everything from the *Pending* section. Finally, update the `VERSION` in `setup.py` with this new version number. +Pending ++++++++ +* Update to use 2022-04-02-preview api version. + +0.5.67 (NOT RELEASED) ++++++++++++++++++++++ +* Add support for csi drivers extensibility. 0.5.66 ++++++ @@ -36,6 +45,7 @@ Release History 0.5.61 ++++++ +* Update to use 2022-03-02-preview api version. * Add support for `--format` parameter in `az aks get-credentials` command. 0.5.60 @@ -70,6 +80,7 @@ for nodepool snapshot, it will be 0.5.58 ++++++ +* Update to use 2022-02-02-preview api version. * Add support for enabling Azure KeyVault KMS with `--enable-azure-keyvault-kms` flag. 0.5.57 @@ -97,6 +108,7 @@ for nodepool snapshot, it will be 0.5.53 ++++++ +* Update to use 2022-01-02-preview api version. * Add support for cluster creating with Capacity Reservation Group. * `az aks create --crg-id` * Add support for nodepool adding with Capacity Reservation Group. diff --git a/src/aks-preview/README.md b/src/aks-preview/README.md deleted file mode 100644 index 5721df42573..00000000000 --- a/src/aks-preview/README.md +++ /dev/null @@ -1,194 +0,0 @@ -#Azure CLI AKS Preview Extension# -This is an extension for AKS features. This will replace the full AKS module. - -## How to use ## -Install this extension using the below CLI command -``` -az extension add --name aks-preview -``` - -## Included Features -### Cluster Auto Scaler: -[more info](https://docs.microsoft.com/azure/aks/autoscaler) - - -#### create aks cluster with enabled cluster autoscaler -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-cluster-autoscaler \ - --min-count 1 \ - --max-count 5 \ - --node-count 3 \ - --kubernetes-version 1.11.3 -``` - -#### enable cluster autoscaler for existing cluster -Note: make sure following setting: -1. min-count <= node-count -2. max-count >= node-count -3. kubernetes-version >= 1.10.6 -*Examples:* -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-cluster-autoscaler \ - --min-count 1 \ - --max-count 5 -``` - -#### disable cluster autoscaler for exisiting enabled cluster -*Examples:* -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --disable-cluster-autoscaler -``` - -#### update min-count/max-count for exisiting enabled cluster -*Examples:* -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --update-cluster-autoscaler \ - --min-count 1 \ - --max-count 5 -``` - -#### Enable apiserver authorized IP ranges - -*Examples:* - -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --api-server-authorized-ip-ranges "172.0.0.10/16,168.10.0.10/18" -``` - -#### Disable apiserver authorized IP ranges - -*Examples:* - -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --api-server-authorized-ip-ranges "" -``` - -#### Use VMAS for new cluster -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --vm-set-type AvailabilitySet \ -``` - -#### Use VMSS for new cluster -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --vm-set-type VirtualMachineScaleSets \ -``` - -#### Use VMSS for new cluster with availability zone feature -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --vm-set-type VirtualMachineScaleSets \ - --zones 1 2 3 -``` - -#### Enable pod security policy for new cluster -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-pod-security-policy \ -``` - -#### Enable pod security policy for existing cluster -*Examples:* -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-pod-security-policy \ -``` - -#### Disable pod security policy for existing cluster -*Examples:* -``` -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --disable-pod-security-policy \ -``` - -#### Enable cluster auto scaler for a node pool -*Examples:* -``` -az aks nodepool update \ - -g MyResourceGroup \ - -n nodepool1 - --cluster-name MyManagedCluster \ - --enable-cluster-autoscaler \ - --max-count 10 \ - --min-count 3 -``` - -#### Update cluster auto scaler settings for a node pool -*Examples:* -``` -az aks nodepool update \ - -g MyResourceGroup \ - -n nodepool1 - --cluster-name MyManagedCluster \ - --update-cluster-autoscaler \ - --max-count 10 \ - --min-count 3 -``` - -#### Create aks cluster whose cluster resource group will be managed by a managed identity (instead of a service principal) -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-managed-identity -``` - -#### Create aks cluster whose cluster resource group will be managed by a user assigned managed identity (instead of a service principal) -*Examples:* -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --enable-managed-identity \ - --assign-identity -``` - -#### Create or update the tags of the managed cluster -``` -az aks create \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --tags "foo=bar" "baz=qux" - -az aks update \ - -g MyResourceGroup \ - -n MyManagedCluster \ - --tags "foo=bar" "baz=qux" -``` \ No newline at end of file diff --git a/src/aks-preview/README.rst b/src/aks-preview/README.rst new file mode 100644 index 00000000000..d06b503206c --- /dev/null +++ b/src/aks-preview/README.rst @@ -0,0 +1,11 @@ +Azure CLI AKS Preview Extension +=============================== + +This is an extension for AKS features. After installing and enabling aks-preview, it will **override the implementation of the same aks commands in azure-cli**. + +How to use +========== + +Install this extension using the following CLI command `az extension add --name aks-preview`. You may need to execute some invalid aks command (e.g., `az aks fake`) to refresh the command index to enable aks-preview. + +Remove this extension using the following CLI command `az extension remove --name aks-preview`. diff --git a/src/aks-preview/azext_aks_preview/__init__.py b/src/aks-preview/azext_aks_preview/__init__.py index 05940474eda..16430e301d7 100644 --- a/src/aks-preview/azext_aks_preview/__init__.py +++ b/src/aks-preview/azext_aks_preview/__init__.py @@ -16,7 +16,7 @@ def register_aks_preview_resource_type(): register_resource_type( "latest", CUSTOM_MGMT_AKS_PREVIEW, - SDKProfile("2022-03-02-preview", {"container_services": "2017-07-01"}), + SDKProfile("2022-04-02-preview", {"container_services": "2017-07-01"}), ) diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index 14a40b0bef5..a7e4891e104 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -131,7 +131,7 @@ from .maintenanceconfiguration import ( aks_maintenanceconfiguration_update_internal, ) -from .vendored_sdks.azure_mgmt_preview_aks.v2022_03_02_preview.models import ( +from .vendored_sdks.azure_mgmt_preview_aks.v2022_04_02_preview.models import ( AgentPool, AgentPoolUpgradeSettings, ContainerServiceStorageProfileTypes, diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml index 4ffe709635c..771915052cf 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:01 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestte22gftdc-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest57x2c7cvu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1507' + - '1640' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestte22gftdc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest57x2c7cvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,21 +114,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3207' + - '3386' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:55 GMT expires: - '-1' pragma: @@ -156,14 +160,110 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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 -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -172,7 +272,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:35 GMT + - Tue, 10 May 2022 03:33:25 GMT expires: - '-1' pragma: @@ -204,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +320,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:33:55 GMT expires: - '-1' pragma: @@ -252,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +368,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:34 GMT + - Tue, 10 May 2022 03:34:25 GMT expires: - '-1' pragma: @@ -300,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +416,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:34:55 GMT expires: - '-1' pragma: @@ -348,14 +448,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +464,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:35 GMT + - Tue, 10 May 2022 03:35:25 GMT expires: - '-1' pragma: @@ -396,14 +496,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +512,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:35:55 GMT expires: - '-1' pragma: @@ -444,15 +544,207 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8c5036b-1723-4e02-9b61-0c65b01f51f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b03c5e8-2317-024e-9b61-0c65b01f51f5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.2433333Z\",\n \"endTime\": - \"2022-04-14T04:30:35.1736222Z\"\n }" + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:36: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:36: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b7ee09b4-11ff-4a58-9f1d-9d47bc50addd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b409eeb7-ff11-584a-9f1d-9d47bc50addd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.8533333Z\",\n \"endTime\": + \"2022-05-10T03:38:16.8974956Z\"\n }" headers: cache-control: - no-cache @@ -461,7 +753,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -493,32 +785,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestte22gftdc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest57x2c7cvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -529,7 +821,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/daed856e-0ffd-4b36-a5cf-1b9857d9acd3\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52251b2a-6854-4ad7-b84e-ad57ec1bf7ed\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -547,11 +839,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:36 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -583,32 +875,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestte22gftdc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest57x2c7cvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -619,7 +911,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/daed856e-0ffd-4b36-a5cf-1b9857d9acd3\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52251b2a-6854-4ad7-b84e-ad57ec1bf7ed\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -637,11 +929,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:37 GMT + - Tue, 10 May 2022 03:38:27 GMT expires: - '-1' pragma: @@ -661,15 +953,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestte22gftdc-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitest57x2c7cvu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -677,7 +969,7 @@ interactions: "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/daed856e-0ffd-4b36-a5cf-1b9857d9acd3"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52251b2a-6854-4ad7-b84e-ad57ec1bf7ed"}]}, "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"}}, @@ -692,38 +984,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2463' + - '2456' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestte22gftdc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest57x2c7cvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -731,7 +1023,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/daed856e-0ffd-4b36-a5cf-1b9857d9acd3\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52251b2a-6854-4ad7-b84e-ad57ec1bf7ed\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -741,21 +1033,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ff22afd-15bb-43cf-ba0d-7eda2bef7dec?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32895d65-816d-484a-8baf-d447ba9141bb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3813' + - '3992' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:42 GMT + - Tue, 10 May 2022 03:38:30 GMT expires: - '-1' pragma: @@ -789,23 +1083,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ff22afd-15bb-43cf-ba0d-7eda2bef7dec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32895d65-816d-484a-8baf-d447ba9141bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd2af20f-bb15-cf43-ba0d-7eda2bef7dec\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:39.4433333Z\"\n }" + string: "{\n \"name\": \"655d8932-6d81-4a48-8baf-d447ba9141bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:31.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:11 GMT + - Tue, 10 May 2022 03:39:01 GMT expires: - '-1' pragma: @@ -837,23 +1131,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ff22afd-15bb-43cf-ba0d-7eda2bef7dec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32895d65-816d-484a-8baf-d447ba9141bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd2af20f-bb15-cf43-ba0d-7eda2bef7dec\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:39.4433333Z\"\n }" + string: "{\n \"name\": \"655d8932-6d81-4a48-8baf-d447ba9141bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:31.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:41 GMT + - Tue, 10 May 2022 03:39:31 GMT expires: - '-1' pragma: @@ -885,24 +1179,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ff22afd-15bb-43cf-ba0d-7eda2bef7dec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32895d65-816d-484a-8baf-d447ba9141bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd2af20f-bb15-cf43-ba0d-7eda2bef7dec\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:39.4433333Z\",\n \"endTime\": - \"2022-04-14T04:31:56.7439253Z\"\n }" + string: "{\n \"name\": \"655d8932-6d81-4a48-8baf-d447ba9141bb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:38:31.09Z\",\n \"endTime\": + \"2022-05-10T03:39:47.372075Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:11 GMT + - Tue, 10 May 2022 03:40:01 GMT expires: - '-1' pragma: @@ -934,32 +1228,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestte22gftdc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestte22gftdc-8ecadf-edd7ea5e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest57x2c7cvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest57x2c7cvu-8ecadf-60062150.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -967,7 +1261,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/daed856e-0ffd-4b36-a5cf-1b9857d9acd3\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52251b2a-6854-4ad7-b84e-ad57ec1bf7ed\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -985,11 +1279,11 @@ interactions: cache-control: - no-cache content-length: - - '3815' + - '3808' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:12 GMT + - Tue, 10 May 2022 03:40:01 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml index 4849b58ec3e..a268a64d357 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:01 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestez3ceqzkp-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthe65qmtpe-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1469' + - '1602' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestez3ceqzkp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesthe65qmtpe-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -111,22 +113,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3158' + - '3337' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:56 GMT expires: - '-1' pragma: @@ -156,23 +160,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:34 GMT + - Tue, 10 May 2022 03:32:25 GMT expires: - '-1' pragma: @@ -204,23 +208,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:04 GMT + - Tue, 10 May 2022 03:32:55 GMT expires: - '-1' pragma: @@ -252,23 +256,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:35 GMT + - Tue, 10 May 2022 03:33:25 GMT expires: - '-1' pragma: @@ -300,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:33:55 GMT expires: - '-1' pragma: @@ -348,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:35 GMT + - Tue, 10 May 2022 03:34:25 GMT expires: - '-1' pragma: @@ -396,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:34:55 GMT expires: - '-1' pragma: @@ -444,24 +448,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20ef5f3b-325e-445f-834b-21f324d19c40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b5fef20-5e32-5f44-834b-21f324d19c40\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.3533333Z\",\n \"endTime\": - \"2022-04-14T04:30:20.1978127Z\"\n }" + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:35:26 GMT expires: - '-1' pragma: @@ -493,32 +496,81 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc4d463-3a49-4e9d-8ea4-5e8a425c4971?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"63d4c4fd-493a-9d4e-8ea4-5e8a425c4971\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.77Z\",\n \"endTime\": + \"2022-05-10T03:35:33.0415167Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestez3ceqzkp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesthe65qmtpe-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -528,7 +580,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/62c98436-8c92-42d9-aa0c-f9982763c2f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60d75f87-035a-4875-85a3-7d14ddb597bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -546,11 +598,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:35:56 GMT expires: - '-1' pragma: @@ -582,32 +634,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestez3ceqzkp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesthe65qmtpe-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -617,7 +669,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/62c98436-8c92-42d9-aa0c-f9982763c2f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60d75f87-035a-4875-85a3-7d14ddb597bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -635,11 +687,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:37 GMT + - Tue, 10 May 2022 03:35:57 GMT expires: - '-1' pragma: @@ -659,15 +711,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestez3ceqzkp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitesthe65qmtpe-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -675,7 +727,7 @@ interactions: "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/62c98436-8c92-42d9-aa0c-f9982763c2f1"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60d75f87-035a-4875-85a3-7d14ddb597bd"}]}, "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"}}, @@ -690,38 +742,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2460' + - '2453' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestez3ceqzkp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesthe65qmtpe-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -729,7 +781,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/62c98436-8c92-42d9-aa0c-f9982763c2f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60d75f87-035a-4875-85a3-7d14ddb597bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -739,21 +791,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4eef1a7-3182-4cba-b6b2-9beaae529558?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/919c3975-fabe-4e80-8934-573a9288e947?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3810' + - '3989' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:43 GMT + - Tue, 10 May 2022 03:36:00 GMT expires: - '-1' pragma: @@ -787,23 +841,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4eef1a7-3182-4cba-b6b2-9beaae529558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/919c3975-fabe-4e80-8934-573a9288e947?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7f1eef4-8231-ba4c-b6b2-9beaae529558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:43.8166666Z\"\n }" + string: "{\n \"name\": \"75399c91-befa-804e-8934-573a9288e947\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:36:00.56Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:13 GMT + - Tue, 10 May 2022 03:36:30 GMT expires: - '-1' pragma: @@ -835,23 +889,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4eef1a7-3182-4cba-b6b2-9beaae529558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/919c3975-fabe-4e80-8934-573a9288e947?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7f1eef4-8231-ba4c-b6b2-9beaae529558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:43.8166666Z\"\n }" + string: "{\n \"name\": \"75399c91-befa-804e-8934-573a9288e947\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:36:00.56Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:43 GMT + - Tue, 10 May 2022 03:37:00 GMT expires: - '-1' pragma: @@ -883,24 +937,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4eef1a7-3182-4cba-b6b2-9beaae529558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/919c3975-fabe-4e80-8934-573a9288e947?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7f1eef4-8231-ba4c-b6b2-9beaae529558\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:43.8166666Z\",\n \"endTime\": - \"2022-04-14T04:31:58.2839604Z\"\n }" + string: "{\n \"name\": \"75399c91-befa-804e-8934-573a9288e947\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:36:00.56Z\",\n \"endTime\": + \"2022-05-10T03:37:22.3566242Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:13 GMT + - Tue, 10 May 2022 03:37:30 GMT expires: - '-1' pragma: @@ -932,32 +986,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestez3ceqzkp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestez3ceqzkp-8ecadf-e93c3665.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesthe65qmtpe-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesthe65qmtpe-8ecadf-66ff813c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -965,7 +1019,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/62c98436-8c92-42d9-aa0c-f9982763c2f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60d75f87-035a-4875-85a3-7d14ddb597bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -983,11 +1037,11 @@ interactions: cache-control: - no-cache content-length: - - '3812' + - '3805' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:13 GMT + - Tue, 10 May 2022 03:37:31 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml index e6fb187c672..70f90f72b77 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:01 GMT + - Tue, 10 May 2022 03:31:49 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbkmur4r3f-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpywvknq4c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkmur4r3f-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpywvknq4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:54 GMT expires: - '-1' pragma: @@ -153,23 +157,359 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:35 GMT + - Tue, 10 May 2022 03:35:55 GMT expires: - '-1' pragma: @@ -201,23 +541,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:36:25 GMT expires: - '-1' pragma: @@ -249,23 +589,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:35 GMT + - Tue, 10 May 2022 03:36:55 GMT expires: - '-1' pragma: @@ -297,23 +637,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:37:25 GMT expires: - '-1' pragma: @@ -345,23 +685,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:36 GMT + - Tue, 10 May 2022 03:37:55 GMT expires: - '-1' pragma: @@ -393,23 +733,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:06 GMT + - Tue, 10 May 2022 03:38:25 GMT expires: - '-1' pragma: @@ -441,24 +781,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab590101-b256-4496-b756-743c8a59406a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0692971-749d-41e7-96b6-2789146f602c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"010159ab-56b2-9644-b756-743c8a59406a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.42Z\",\n \"endTime\": - \"2022-04-14T04:30:35.7775105Z\"\n }" + string: "{\n \"name\": \"712969e0-9d74-e741-96b6-2789146f602c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:54.7933333Z\",\n \"endTime\": + \"2022-05-10T03:38:28.473101Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:38:55 GMT expires: - '-1' pragma: @@ -490,39 +830,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkmur4r3f-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpywvknq4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ff618020-dccd-4b69-bcc7-7b8f89585678\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca4b448-436b-4f71-b478-56874c76b767\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +880,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:36 GMT + - Tue, 10 May 2022 03:38:55 GMT expires: - '-1' pragma: @@ -576,39 +916,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkmur4r3f-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpywvknq4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ff618020-dccd-4b69-bcc7-7b8f89585678\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca4b448-436b-4f71-b478-56874c76b767\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +966,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:42 GMT + - Tue, 10 May 2022 03:38:56 GMT expires: - '-1' pragma: @@ -650,15 +990,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestbkmur4r3f-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestpywvknq4c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -666,7 +1006,7 @@ interactions: "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/ff618020-dccd-4b69-bcc7-7b8f89585678"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca4b448-436b-4f71-b478-56874c76b767"}]}, "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"}}, @@ -681,38 +1021,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2511' + - '2504' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkmur4r3f-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpywvknq4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -721,7 +1061,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ff618020-dccd-4b69-bcc7-7b8f89585678\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca4b448-436b-4f71-b478-56874c76b767\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,21 +1071,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/877aeb6e-d98d-4016-9d48-6029bba9acb7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/647a3838-0656-413f-a1ef-4080242d6902?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3858' + - '4037' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:44 GMT + - Tue, 10 May 2022 03:38:59 GMT expires: - '-1' pragma: @@ -779,14 +1121,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/877aeb6e-d98d-4016-9d48-6029bba9acb7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/647a3838-0656-413f-a1ef-4080242d6902?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6eeb7a87-8dd9-1640-9d48-6029bba9acb7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:44.1866666Z\"\n }" + string: "{\n \"name\": \"38387a64-5606-3f41-a1ef-4080242d6902\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:59.8466666Z\"\n }" headers: cache-control: - no-cache @@ -795,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:14 GMT + - Tue, 10 May 2022 03:39:29 GMT expires: - '-1' pragma: @@ -827,14 +1169,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/877aeb6e-d98d-4016-9d48-6029bba9acb7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/647a3838-0656-413f-a1ef-4080242d6902?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6eeb7a87-8dd9-1640-9d48-6029bba9acb7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:44.1866666Z\"\n }" + string: "{\n \"name\": \"38387a64-5606-3f41-a1ef-4080242d6902\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:59.8466666Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:44 GMT + - Tue, 10 May 2022 03:39:59 GMT expires: - '-1' pragma: @@ -875,15 +1217,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/877aeb6e-d98d-4016-9d48-6029bba9acb7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/647a3838-0656-413f-a1ef-4080242d6902?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6eeb7a87-8dd9-1640-9d48-6029bba9acb7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:44.1866666Z\",\n \"endTime\": - \"2022-04-14T04:32:00.3520773Z\"\n }" + string: "{\n \"name\": \"38387a64-5606-3f41-a1ef-4080242d6902\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:38:59.8466666Z\",\n \"endTime\": + \"2022-05-10T03:40:09.8353484Z\"\n }" headers: cache-control: - no-cache @@ -892,7 +1234,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:13 GMT + - Tue, 10 May 2022 03:40:29 GMT expires: - '-1' pragma: @@ -924,32 +1266,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkmur4r3f-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkmur4r3f-8ecadf-2756723a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpywvknq4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpywvknq4c-8ecadf-0e4ab693.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -960,7 +1302,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ff618020-dccd-4b69-bcc7-7b8f89585678\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca4b448-436b-4f71-b478-56874c76b767\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -978,11 +1320,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:29 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml index 4eb80e5cce4..320bff0ee7f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:00 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaxm7j5ain-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnctlzj2yg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:55 GMT expires: - '-1' pragma: @@ -153,23 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:35 GMT + - Tue, 10 May 2022 03:32:25 GMT expires: - '-1' pragma: @@ -201,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:32:55 GMT expires: - '-1' pragma: @@ -249,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:35 GMT + - Tue, 10 May 2022 03:33:25 GMT expires: - '-1' pragma: @@ -297,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:33:55 GMT expires: - '-1' pragma: @@ -345,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:35 GMT + - Tue, 10 May 2022 03:34:25 GMT expires: - '-1' pragma: @@ -393,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:34:55 GMT expires: - '-1' pragma: @@ -441,24 +445,167 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6f008ed-a1a3-44b5-9da8-989e3d97ecbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed08f0a6-a3a1-b544-9da8-989e3d97ecbf\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.5233333Z\",\n \"endTime\": - \"2022-04-14T04:30:30.8752007Z\"\n }" + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:36:55 GMT expires: - '-1' pragma: @@ -490,39 +637,184 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:37: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dc882f8-b261-47d3-85cf-0d88d21ff09e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f882c81d-61b2-d347-85cf-0d88d21ff09e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.55Z\",\n \"endTime\": + \"2022-05-10T03:38:24.9154939Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +832,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:36 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -576,39 +868,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +918,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:36 GMT + - Tue, 10 May 2022 03:38:27 GMT expires: - '-1' pragma: @@ -650,15 +942,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestaxm7j5ain-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestnctlzj2yg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -666,7 +958,7 @@ interactions: "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/ba8fd01d-e563-4300-9e45-fe96010a9033"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89"}]}, "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"}}, @@ -681,38 +973,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2547' + - '2540' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -721,7 +1013,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,21 +1023,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fcd18ca-12db-4a60-a0c2-b284fb873ec9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b64ae38d-591c-4c49-8cf0-0e768fcfb98f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3900' + - '4079' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:39 GMT + - Tue, 10 May 2022 03:38:30 GMT expires: - '-1' pragma: @@ -779,14 +1073,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fcd18ca-12db-4a60-a0c2-b284fb873ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b64ae38d-591c-4c49-8cf0-0e768fcfb98f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca18cd2f-db12-604a-a0c2-b284fb873ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:39.7533333Z\"\n }" + string: "{\n \"name\": \"8de34ab6-1c59-494c-8cf0-0e768fcfb98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:30.2366666Z\"\n }" headers: cache-control: - no-cache @@ -795,7 +1089,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:09 GMT + - Tue, 10 May 2022 03:39:00 GMT expires: - '-1' pragma: @@ -827,14 +1121,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fcd18ca-12db-4a60-a0c2-b284fb873ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b64ae38d-591c-4c49-8cf0-0e768fcfb98f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca18cd2f-db12-604a-a0c2-b284fb873ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:39.7533333Z\"\n }" + string: "{\n \"name\": \"8de34ab6-1c59-494c-8cf0-0e768fcfb98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:30.2366666Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:39 GMT + - Tue, 10 May 2022 03:39:29 GMT expires: - '-1' pragma: @@ -875,15 +1169,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fcd18ca-12db-4a60-a0c2-b284fb873ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b64ae38d-591c-4c49-8cf0-0e768fcfb98f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca18cd2f-db12-604a-a0c2-b284fb873ec9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:39.7533333Z\",\n \"endTime\": - \"2022-04-14T04:32:02.0602773Z\"\n }" + string: "{\n \"name\": \"8de34ab6-1c59-494c-8cf0-0e768fcfb98f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:38:30.2366666Z\",\n \"endTime\": + \"2022-05-10T03:39:46.6462975Z\"\n }" headers: cache-control: - no-cache @@ -892,7 +1186,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:09 GMT + - Tue, 10 May 2022 03:39:59 GMT expires: - '-1' pragma: @@ -924,32 +1218,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -960,7 +1254,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -978,11 +1272,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:10 GMT + - Tue, 10 May 2022 03:40:00 GMT expires: - '-1' pragma: @@ -1014,32 +1308,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1050,7 +1344,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1068,11 +1362,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:10 GMT + - Tue, 10 May 2022 03:40:01 GMT expires: - '-1' pragma: @@ -1092,15 +1386,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestaxm7j5ain-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestnctlzj2yg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -1108,7 +1402,7 @@ interactions: "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/ba8fd01d-e563-4300-9e45-fe96010a9033"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89"}]}, "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"}}, @@ -1123,38 +1417,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2473' + - '2466' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1162,7 +1456,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1172,21 +1466,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dd58cf0-1a50-4b8e-b157-9a09edefc30e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b74d5f8b-2bf8-4a09-b1e3-78f3c5b54531?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3823' + - '4002' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:13 GMT + - Tue, 10 May 2022 03:40:03 GMT expires: - '-1' pragma: @@ -1202,7 +1498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1220,14 +1516,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dd58cf0-1a50-4b8e-b157-9a09edefc30e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b74d5f8b-2bf8-4a09-b1e3-78f3c5b54531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f08cd59d-501a-8e4b-b157-9a09edefc30e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:13.8333333Z\"\n }" + string: "{\n \"name\": \"8b5f4db7-f82b-094a-b1e3-78f3c5b54531\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:04.4866666Z\"\n }" headers: cache-control: - no-cache @@ -1236,7 +1532,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:43 GMT + - Tue, 10 May 2022 03:40:34 GMT expires: - '-1' pragma: @@ -1268,14 +1564,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dd58cf0-1a50-4b8e-b157-9a09edefc30e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b74d5f8b-2bf8-4a09-b1e3-78f3c5b54531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f08cd59d-501a-8e4b-b157-9a09edefc30e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:13.8333333Z\"\n }" + string: "{\n \"name\": \"8b5f4db7-f82b-094a-b1e3-78f3c5b54531\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:04.4866666Z\"\n }" headers: cache-control: - no-cache @@ -1284,7 +1580,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:13 GMT + - Tue, 10 May 2022 03:41:04 GMT expires: - '-1' pragma: @@ -1316,15 +1612,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dd58cf0-1a50-4b8e-b157-9a09edefc30e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b74d5f8b-2bf8-4a09-b1e3-78f3c5b54531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f08cd59d-501a-8e4b-b157-9a09edefc30e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:32:13.8333333Z\",\n \"endTime\": - \"2022-04-14T04:33:35.1660483Z\"\n }" + string: "{\n \"name\": \"8b5f4db7-f82b-094a-b1e3-78f3c5b54531\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:40:04.4866666Z\",\n \"endTime\": + \"2022-05-10T03:41:20.9466387Z\"\n }" headers: cache-control: - no-cache @@ -1333,7 +1629,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:44 GMT + - Tue, 10 May 2022 03:41:34 GMT expires: - '-1' pragma: @@ -1365,32 +1661,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1398,7 +1694,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1416,11 +1712,11 @@ interactions: cache-control: - no-cache content-length: - - '3825' + - '3818' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:44 GMT + - Tue, 10 May 2022 03:41:34 GMT expires: - '-1' pragma: @@ -1452,32 +1748,32 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1485,7 +1781,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1503,11 +1799,11 @@ interactions: cache-control: - no-cache content-length: - - '3825' + - '3818' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:44 GMT + - Tue, 10 May 2022 03:41:35 GMT expires: - '-1' pragma: @@ -1527,15 +1823,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestaxm7j5ain-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestnctlzj2yg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1543,7 +1839,7 @@ interactions: "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/ba8fd01d-e563-4300-9e45-fe96010a9033"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89"}]}, "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"}}, @@ -1558,38 +1854,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2546' + - '2539' Content-Type: - application/json ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1598,7 +1894,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1608,21 +1904,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1e6e6a-7ed1-4ae5-89fc-d324f5f4f5ba?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ccf92f0-a371-4c09-98fc-3161ea1a205c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3899' + - '4078' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:45 GMT + - Tue, 10 May 2022 03:41:38 GMT expires: - '-1' pragma: @@ -1638,7 +1936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1656,14 +1954,14 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1e6e6a-7ed1-4ae5-89fc-d324f5f4f5ba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ccf92f0-a371-4c09-98fc-3161ea1a205c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a6e1ecf-d17e-e54a-89fc-d324f5f4f5ba\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:46.3366666Z\"\n }" + string: "{\n \"name\": \"f092cf2c-71a3-094c-98fc-3161ea1a205c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:38.8033333Z\"\n }" headers: cache-control: - no-cache @@ -1672,7 +1970,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:16 GMT + - Tue, 10 May 2022 03:42:08 GMT expires: - '-1' pragma: @@ -1704,14 +2002,14 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1e6e6a-7ed1-4ae5-89fc-d324f5f4f5ba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ccf92f0-a371-4c09-98fc-3161ea1a205c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a6e1ecf-d17e-e54a-89fc-d324f5f4f5ba\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:46.3366666Z\"\n }" + string: "{\n \"name\": \"f092cf2c-71a3-094c-98fc-3161ea1a205c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:38.8033333Z\"\n }" headers: cache-control: - no-cache @@ -1720,7 +2018,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:46 GMT + - Tue, 10 May 2022 03:42:39 GMT expires: - '-1' pragma: @@ -1752,15 +2050,15 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1e6e6a-7ed1-4ae5-89fc-d324f5f4f5ba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ccf92f0-a371-4c09-98fc-3161ea1a205c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a6e1ecf-d17e-e54a-89fc-d324f5f4f5ba\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:33:46.3366666Z\",\n \"endTime\": - \"2022-04-14T04:35:02.2452801Z\"\n }" + string: "{\n \"name\": \"f092cf2c-71a3-094c-98fc-3161ea1a205c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:41:38.8033333Z\",\n \"endTime\": + \"2022-05-10T03:42:56.5562886Z\"\n }" headers: cache-control: - no-cache @@ -1769,7 +2067,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:16 GMT + - Tue, 10 May 2022 03:43:08 GMT expires: - '-1' pragma: @@ -1801,32 +2099,32 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaxm7j5ain-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaxm7j5ain-8ecadf-92428431.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnctlzj2yg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnctlzj2yg-8ecadf-bd30aee6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1837,7 +2135,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ba8fd01d-e563-4300-9e45-fe96010a9033\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/526ebba6-5478-4b04-8009-56113a77cb89\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1855,11 +2153,11 @@ interactions: cache-control: - no-cache content-length: - - '4278' + - '4271' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:16 GMT + - Tue, 10 May 2022 03:43:08 GMT expires: - '-1' pragma: @@ -1893,26 +2191,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d719b360-67d7-4f3e-9e91-1aa2857d305c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86173eda-fc51-418f-b8ab-601f2018633e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:35:17 GMT + - Tue, 10 May 2022 03:43:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d719b360-67d7-4f3e-9e91-1aa2857d305c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/86173eda-fc51-418f-b8ab-601f2018633e?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml index 396bb6b31da..a2ff48dfdf0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:00 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthzbxmlckr-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestylpopvbcn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzbxmlckr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestylpopvbcn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:55 GMT expires: - '-1' pragma: @@ -153,23 +157,215 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:34 GMT + - Tue, 10 May 2022 03:34:25 GMT expires: - '-1' pragma: @@ -201,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:34:55 GMT expires: - '-1' pragma: @@ -249,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:34 GMT + - Tue, 10 May 2022 03:35:25 GMT expires: - '-1' pragma: @@ -297,23 +493,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:04 GMT + - Tue, 10 May 2022 03:35:55 GMT expires: - '-1' pragma: @@ -345,23 +541,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:34 GMT + - Tue, 10 May 2022 03:36:26 GMT expires: - '-1' pragma: @@ -393,23 +589,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:04 GMT + - Tue, 10 May 2022 03:36:55 GMT expires: - '-1' pragma: @@ -441,23 +637,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:37:26 GMT expires: - '-1' pragma: @@ -489,23 +685,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:05 GMT + - Tue, 10 May 2022 03:37:55 GMT expires: - '-1' pragma: @@ -537,24 +733,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3506517-c2fd-406e-8f54-dcce57e575b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/945d11e1-82ab-4d22-ac2c-973880eb38da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"176550c3-fdc2-6e40-8f54-dcce57e575b2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:04.93Z\",\n \"endTime\": - \"2022-04-14T04:31:22.3975331Z\"\n }" + string: "{\n \"name\": \"e1115d94-ab82-224d-ac2c-973880eb38da\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.2533333Z\",\n \"endTime\": + \"2022-05-10T03:38:23.3512067Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:35 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -586,39 +782,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzbxmlckr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestylpopvbcn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8d2551f5-e865-43ef-b92f-0abb581a2b2e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/102d72b0-b527-4f71-8da7-de2b4fd883b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -636,11 +832,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:35 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -672,39 +868,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzbxmlckr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestylpopvbcn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8d2551f5-e865-43ef-b92f-0abb581a2b2e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/102d72b0-b527-4f71-8da7-de2b4fd883b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -722,11 +918,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:36 GMT + - Tue, 10 May 2022 03:38:27 GMT expires: - '-1' pragma: @@ -746,15 +942,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesthzbxmlckr-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestylpopvbcn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -762,7 +958,7 @@ interactions: "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/8d2551f5-e865-43ef-b92f-0abb581a2b2e"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/102d72b0-b527-4f71-8da7-de2b4fd883b0"}]}, "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"}}, @@ -777,38 +973,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2473' + - '2466' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzbxmlckr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestylpopvbcn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -816,7 +1012,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8d2551f5-e865-43ef-b92f-0abb581a2b2e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/102d72b0-b527-4f71-8da7-de2b4fd883b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -826,21 +1022,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32a396ff-6c02-4d7c-afcd-703a08706604?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d793d375-aed2-4a2f-b20e-2ff01e79bca5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3809' + - '3988' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:39 GMT + - Tue, 10 May 2022 03:38:30 GMT expires: - '-1' pragma: @@ -856,7 +1054,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 addon enable + Connection: + - keep-alive + ParameterSetName: + - --addon --resource-group --name -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d793d375-aed2-4a2f-b20e-2ff01e79bca5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75d393d7-d2ae-2f4a-b20e-2ff01e79bca5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:29.8833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:38:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -874,14 +1120,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32a396ff-6c02-4d7c-afcd-703a08706604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d793d375-aed2-4a2f-b20e-2ff01e79bca5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff96a332-026c-7c4d-afcd-703a08706604\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:31:39.2866666Z\"\n }" + string: "{\n \"name\": \"75d393d7-d2ae-2f4a-b20e-2ff01e79bca5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:29.8833333Z\"\n }" headers: cache-control: - no-cache @@ -890,7 +1136,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:08 GMT + - Tue, 10 May 2022 03:39:29 GMT expires: - '-1' pragma: @@ -922,14 +1168,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32a396ff-6c02-4d7c-afcd-703a08706604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d793d375-aed2-4a2f-b20e-2ff01e79bca5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff96a332-026c-7c4d-afcd-703a08706604\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:31:39.2866666Z\"\n }" + string: "{\n \"name\": \"75d393d7-d2ae-2f4a-b20e-2ff01e79bca5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:29.8833333Z\"\n }" headers: cache-control: - no-cache @@ -938,7 +1184,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:38 GMT + - Tue, 10 May 2022 03:39:59 GMT expires: - '-1' pragma: @@ -970,15 +1216,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32a396ff-6c02-4d7c-afcd-703a08706604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d793d375-aed2-4a2f-b20e-2ff01e79bca5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff96a332-026c-7c4d-afcd-703a08706604\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:31:39.2866666Z\",\n \"endTime\": - \"2022-04-14T04:32:59.5066737Z\"\n }" + string: "{\n \"name\": \"75d393d7-d2ae-2f4a-b20e-2ff01e79bca5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:38:29.8833333Z\",\n \"endTime\": + \"2022-05-10T03:40:07.4266767Z\"\n }" headers: cache-control: - no-cache @@ -987,7 +1233,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:09 GMT + - Tue, 10 May 2022 03:40:30 GMT expires: - '-1' pragma: @@ -1019,32 +1265,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzbxmlckr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzbxmlckr-8ecadf-30277763.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestylpopvbcn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestylpopvbcn-8ecadf-f016ddea.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1054,7 +1300,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8d2551f5-e865-43ef-b92f-0abb581a2b2e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/102d72b0-b527-4f71-8da7-de2b4fd883b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1072,11 +1318,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:10 GMT + - Tue, 10 May 2022 03:40:30 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml index 9b3d7dd04c2..839af70f78c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:00 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4cmkplzod-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestymreljxeg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cmkplzod-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestymreljxeg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:05 GMT + - Tue, 10 May 2022 03:31:54 GMT expires: - '-1' pragma: @@ -153,23 +157,407 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:34 GMT + - Tue, 10 May 2022 03:36:25 GMT expires: - '-1' pragma: @@ -201,23 +589,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:36:55 GMT expires: - '-1' pragma: @@ -249,23 +637,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:35 GMT + - Tue, 10 May 2022 03:37:25 GMT expires: - '-1' pragma: @@ -297,23 +685,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:37:55 GMT expires: - '-1' pragma: @@ -345,23 +733,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:35 GMT + - Tue, 10 May 2022 03:38:25 GMT expires: - '-1' pragma: @@ -393,24 +781,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b5ad0bf-577f-40d5-9e47-607cc28a78b0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/997e3ba4-5357-4f40-8c3e-366e893c612f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfd05a3b-7f57-d540-9e47-607cc28a78b0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.4133333Z\",\n \"endTime\": - \"2022-04-14T04:29:53.1852974Z\"\n }" + string: "{\n \"name\": \"a43b7e99-5753-404f-8c3e-366e893c612f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.09Z\",\n \"endTime\": + \"2022-05-10T03:38:30.6846433Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:38:55 GMT expires: - '-1' pragma: @@ -442,39 +830,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cmkplzod-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestymreljxeg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a913787f-839a-4a8e-bf1f-3bb42c6c6b56\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa37c2ff-6236-4511-827b-3c8bde9bdcc8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +880,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:38:56 GMT expires: - '-1' pragma: @@ -528,39 +916,39 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cmkplzod-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cmkplzod-8ecadf-0b07b09c.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestymreljxeg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestymreljxeg-8ecadf-b3daf1f9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a913787f-839a-4a8e-bf1f-3bb42c6c6b56\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa37c2ff-6236-4511-827b-3c8bde9bdcc8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -578,11 +966,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:06 GMT + - Tue, 10 May 2022 03:38:57 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml index fbbd23c2f31..ad4a6d7623e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:26:59Z"},"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","date":"2022-05-10T03:31:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:00 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdhr4z3hlg-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4vyh2c3od-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1507' + - '1640' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdhr4z3hlg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest4vyh2c3od-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,21 +114,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3207' + - '3386' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:54 GMT expires: - '-1' pragma: @@ -156,23 +160,359 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:32: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:33: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 -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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 -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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 -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:34 GMT + - Tue, 10 May 2022 03:35:54 GMT expires: - '-1' pragma: @@ -204,23 +544,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:04 GMT + - Tue, 10 May 2022 03:36:24 GMT expires: - '-1' pragma: @@ -252,23 +592,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:34 GMT + - Tue, 10 May 2022 03:36:55 GMT expires: - '-1' pragma: @@ -300,23 +640,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:04 GMT + - Tue, 10 May 2022 03:37:25 GMT expires: - '-1' pragma: @@ -348,23 +688,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:35 GMT + - Tue, 10 May 2022 03:37:55 GMT expires: - '-1' pragma: @@ -396,24 +736,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9107b331-d9f0-4ed6-9578-63d55f83669b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7236a11-8926-4eb9-83af-95f163c112cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"31b30791-f0d9-d64e-9578-63d55f83669b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:04.7833333Z\",\n \"endTime\": - \"2022-04-14T04:30:03.9492454Z\"\n }" + string: "{\n \"name\": \"116a23f7-2689-b94e-83af-95f163c112cd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:54.79Z\",\n \"endTime\": + \"2022-05-10T03:38:19.0893798Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:38:25 GMT expires: - '-1' pragma: @@ -445,32 +785,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdhr4z3hlg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest4vyh2c3od-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -481,7 +821,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d7974ceb-d956-4620-9d7c-d3279fb396db\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/29b536f0-9a0f-4d18-a4c8-5b2018395640\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -499,11 +839,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:05 GMT + - Tue, 10 May 2022 03:38:25 GMT expires: - '-1' pragma: @@ -535,32 +875,32 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdhr4z3hlg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdhr4z3hlg-8ecadf-e9dc8460.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest4vyh2c3od-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4vyh2c3od-8ecadf-d0f66463.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -571,7 +911,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d7974ceb-d956-4620-9d7c-d3279fb396db\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/29b536f0-9a0f-4d18-a4c8-5b2018395640\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -589,11 +929,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:06 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml index 15d3a147313..fc03cc9cf49 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:32:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:40:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:03 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4vjy4eflh-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfih3s4vo6-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1469' + - '1602' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4vjy4eflh-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestfih3s4vo6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -111,22 +113,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3158' + - '3337' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:17 GMT + - Tue, 10 May 2022 03:40:07 GMT expires: - '-1' pragma: @@ -138,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -156,119 +160,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:32: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 --enable-managed-identity --ssh-key-value -a -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:33: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-managed-identity --ssh-key-value -a -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:47 GMT + - Tue, 10 May 2022 03:40:37 GMT expires: - '-1' pragma: @@ -300,23 +208,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:17 GMT + - Tue, 10 May 2022 03:41:07 GMT expires: - '-1' pragma: @@ -348,23 +256,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:48 GMT + - Tue, 10 May 2022 03:41:37 GMT expires: - '-1' pragma: @@ -396,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:18 GMT + - Tue, 10 May 2022 03:42:07 GMT expires: - '-1' pragma: @@ -444,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:47 GMT + - Tue, 10 May 2022 03:42:37 GMT expires: - '-1' pragma: @@ -492,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:18 GMT + - Tue, 10 May 2022 03:43:08 GMT expires: - '-1' pragma: @@ -540,24 +448,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf4cfbbc-a136-4cfd-ae05-6a666dbd8455?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2b0398-3e62-473b-b696-3e3a05da840a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcfb4cbf-36a1-fd4c-ae05-6a666dbd8455\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:32:18.0933333Z\",\n \"endTime\": - \"2022-04-14T04:36:21.7408716Z\"\n }" + string: "{\n \"name\": \"98032b6c-623e-3b47-b696-3e3a05da840a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:40:07.65Z\",\n \"endTime\": + \"2022-05-10T03:43:33.0410942Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:48 GMT + - Tue, 10 May 2022 03:43:37 GMT expires: - '-1' pragma: @@ -589,32 +497,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4vjy4eflh-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestfih3s4vo6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -624,7 +532,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/651e524c-8d71-4ef4-8d84-67681d8277c7\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/120d20e8-5b81-4c4c-b1c0-22744d83c6f3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -642,11 +550,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:48 GMT + - Tue, 10 May 2022 03:43:38 GMT expires: - '-1' pragma: @@ -678,32 +586,32 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4vjy4eflh-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4vjy4eflh-8ecadf-069fdc09.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestfih3s4vo6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfih3s4vo6-8ecadf-f1d1744b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -713,7 +621,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/651e524c-8d71-4ef4-8d84-67681d8277c7\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/120d20e8-5b81-4c4c-b1c0-22744d83c6f3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,11 +639,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:49 GMT + - Tue, 10 May 2022 03:43:38 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml index 39f2230c1d1..b1714ab6476 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:32:15Z"},"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","date":"2022-05-10T03:37:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:37:32 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyuxvg7emb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyfhonqigj-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyuxvg7emb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyfhonqigj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:18 GMT + - Tue, 10 May 2022 03:37:36 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -153,62 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:32: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-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +173,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:19 GMT + - Tue, 10 May 2022 03:38:06 GMT expires: - '-1' pragma: @@ -249,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:49 GMT + - Tue, 10 May 2022 03:38:36 GMT expires: - '-1' pragma: @@ -297,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:19 GMT + - Tue, 10 May 2022 03:39:06 GMT expires: - '-1' pragma: @@ -345,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:49 GMT + - Tue, 10 May 2022 03:39:36 GMT expires: - '-1' pragma: @@ -393,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:19 GMT + - Tue, 10 May 2022 03:40:06 GMT expires: - '-1' pragma: @@ -441,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:50 GMT + - Tue, 10 May 2022 03:40:36 GMT expires: - '-1' pragma: @@ -489,24 +445,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/150aa78b-5527-4182-a672-71de942bb083?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88023962-cc32-43eb-bca6-65b7ea41be38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ba70a15-2755-8241-a672-71de942bb083\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:32:19.4133333Z\",\n \"endTime\": - \"2022-04-14T04:36:17.1823094Z\"\n }" + string: "{\n \"name\": \"62390288-32cc-eb43-bca6-65b7ea41be38\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:37:36.2366666Z\",\n \"endTime\": + \"2022-05-10T03:41:01.469934Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:19 GMT + - Tue, 10 May 2022 03:41:06 GMT expires: - '-1' pragma: @@ -538,39 +494,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyuxvg7emb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyfhonqigj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d59a5947-5a67-4a42-be4b-b46ac2be10f0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4b962d06-35c1-4f06-9f0b-04e2fa044ec0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -588,11 +544,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:20 GMT + - Tue, 10 May 2022 03:41:06 GMT expires: - '-1' pragma: @@ -624,39 +580,39 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyuxvg7emb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyuxvg7emb-8ecadf-21d2895b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyfhonqigj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyfhonqigj-8ecadf-573e5131.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d59a5947-5a67-4a42-be4b-b46ac2be10f0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4b962d06-35c1-4f06-9f0b-04e2fa044ec0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -674,11 +630,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:21 GMT + - Tue, 10 May 2022 03:41:07 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml index 100befd5374..e24384592d9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:32:15Z"},"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","date":"2022-05-10T03:40:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:32:15 GMT + - Tue, 10 May 2022 03:40:31 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnhz3omdrj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjylxol3gn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1507' + - '1640' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnhz3omdrj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjylxol3gn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,21 +114,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3207' + - '3386' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:19 GMT + - Tue, 10 May 2022 03:40:34 GMT expires: - '-1' pragma: @@ -156,23 +160,71 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:49 GMT + - Tue, 10 May 2022 03:41:34 GMT expires: - '-1' pragma: @@ -204,23 +256,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:19 GMT + - Tue, 10 May 2022 03:42:04 GMT expires: - '-1' pragma: @@ -252,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:50 GMT + - Tue, 10 May 2022 03:42:34 GMT expires: - '-1' pragma: @@ -300,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:19 GMT + - Tue, 10 May 2022 03:43:05 GMT expires: - '-1' pragma: @@ -348,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:49 GMT + - Tue, 10 May 2022 03:43:35 GMT expires: - '-1' pragma: @@ -396,23 +448,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:19 GMT + - Tue, 10 May 2022 03:44:05 GMT expires: - '-1' pragma: @@ -444,24 +496,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95366846-103e-4771-b688-0a2bffab9b22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f17cf6d-8ca5-4ce5-9622-6e3e815ebad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46683695-3e10-7147-b688-0a2bffab9b22\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:32:19.8333333Z\",\n \"endTime\": - \"2022-04-14T04:35:44.7036902Z\"\n }" + string: "{\n \"name\": \"6dcf176f-a58c-e54c-9622-6e3e815ebad9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:40:34.67Z\",\n \"endTime\": + \"2022-05-10T03:44:34.7485851Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:50 GMT + - Tue, 10 May 2022 03:44:35 GMT expires: - '-1' pragma: @@ -493,32 +545,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnhz3omdrj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjylxol3gn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -529,7 +581,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/055c4e7d-2e0d-4e91-8ac8-182a73aaaed4\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9a0a65fb-3101-446b-b191-fc7081200b22\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -547,11 +599,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:50 GMT + - Tue, 10 May 2022 03:44:35 GMT expires: - '-1' pragma: @@ -583,32 +635,32 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnhz3omdrj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnhz3omdrj-8ecadf-fd40c1d1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjylxol3gn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjylxol3gn-8ecadf-c3dbfa11.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -619,7 +671,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/055c4e7d-2e0d-4e91-8ac8-182a73aaaed4\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9a0a65fb-3101-446b-b191-fc7081200b22\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -637,11 +689,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:51 GMT + - Tue, 10 May 2022 03:44:36 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml index adc2ed15e39..f86ad6b42b3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:35:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:43:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:18 GMT + - Tue, 10 May 2022 03:43:11 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthzmskf6yx-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest543veuqv3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1469' + - '1602' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzmskf6yx-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest543veuqv3-8ecadf\",\n \"fqdn\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -111,22 +113,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3158' + - '3337' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:21 GMT + - Tue, 10 May 2022 03:43:13 GMT expires: - '-1' pragma: @@ -138,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -156,23 +160,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:51 GMT + - Tue, 10 May 2022 03:43:44 GMT expires: - '-1' pragma: @@ -204,23 +208,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:21 GMT + - Tue, 10 May 2022 03:44:14 GMT expires: - '-1' pragma: @@ -252,23 +256,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:51 GMT + - Tue, 10 May 2022 03:44:44 GMT expires: - '-1' pragma: @@ -300,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:21 GMT + - Tue, 10 May 2022 03:45:15 GMT expires: - '-1' pragma: @@ -348,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:52 GMT + - Tue, 10 May 2022 03:45:45 GMT expires: - '-1' pragma: @@ -396,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:22 GMT + - Tue, 10 May 2022 03:46:15 GMT expires: - '-1' pragma: @@ -444,24 +448,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e73a0417-18a3-402d-8bf6-9c8c3320ebb8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec90609b-f821-4943-a7b2-524c11434978?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17043ae7-a318-2d40-8bf6-9c8c3320ebb8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:35:21.8066666Z\",\n \"endTime\": - \"2022-04-14T04:38:32.585495Z\"\n }" + string: "{\n \"name\": \"9b6090ec-21f8-4349-a7b2-524c11434978\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:43:14.54Z\",\n \"endTime\": + \"2022-05-10T03:46:44.5558925Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:51 GMT + - Tue, 10 May 2022 03:46:44 GMT expires: - '-1' pragma: @@ -493,32 +497,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzmskf6yx-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest543veuqv3-8ecadf\",\n \"fqdn\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -528,7 +532,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/12fa7cf5-b296-46ec-9d7f-434499aae8da\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c5fe1af-61bc-4b21-8a3b-7c21d4df50be\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -546,11 +550,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:52 GMT + - Tue, 10 May 2022 03:46:45 GMT expires: - '-1' pragma: @@ -582,32 +586,32 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthzmskf6yx-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthzmskf6yx-8ecadf-a25316a3.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest543veuqv3-8ecadf\",\n \"fqdn\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest543veuqv3-8ecadf-0cc5859c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -617,7 +621,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/12fa7cf5-b296-46ec-9d7f-434499aae8da\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c5fe1af-61bc-4b21-8a3b-7c21d4df50be\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -635,11 +639,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:53 GMT + - Tue, 10 May 2022 03:46:46 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml index a3e07841140..c477f370e54 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:33:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:40:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:10 GMT + - Tue, 10 May 2022 03:40:31 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4cpf7ufkm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6tyr34u3h-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cpf7ufkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6tyr34u3h-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:13 GMT + - Tue, 10 May 2022 03:40:35 GMT expires: - '-1' pragma: @@ -153,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +173,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:43 GMT + - Tue, 10 May 2022 03:41:05 GMT expires: - '-1' pragma: @@ -201,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:14 GMT + - Tue, 10 May 2022 03:41:35 GMT expires: - '-1' pragma: @@ -249,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:44 GMT + - Tue, 10 May 2022 03:42:06 GMT expires: - '-1' pragma: @@ -297,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:14 GMT + - Tue, 10 May 2022 03:42:36 GMT expires: - '-1' pragma: @@ -345,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:44 GMT + - Tue, 10 May 2022 03:43:06 GMT expires: - '-1' pragma: @@ -393,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:15 GMT + - Tue, 10 May 2022 03:43:35 GMT expires: - '-1' pragma: @@ -441,24 +445,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55b21868-b10a-47fa-aa30-5b723219e544?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85e569a6-990f-4c7f-974a-2b149e475701?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6818b255-0ab1-fa47-aa30-5b723219e544\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:33:14.3666666Z\",\n \"endTime\": - \"2022-04-14T04:36:35.7745777Z\"\n }" + string: "{\n \"name\": \"a669e585-0f99-7f4c-974a-2b149e475701\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:40:35.7866666Z\",\n \"endTime\": + \"2022-05-10T03:44:02.478089Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:44 GMT + - Tue, 10 May 2022 03:44:05 GMT expires: - '-1' pragma: @@ -490,39 +494,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cpf7ufkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6tyr34u3h-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/18ed77ba-e014-4540-8fc0-454c3d153a7b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2c7158ae-90af-4266-a751-9b086e3f7a04\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +544,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:45 GMT + - Tue, 10 May 2022 03:44:06 GMT expires: - '-1' pragma: @@ -576,39 +580,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4cpf7ufkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4cpf7ufkm-8ecadf-8d9af7c1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6tyr34u3h-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6tyr34u3h-8ecadf-a4b6a658.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/18ed77ba-e014-4540-8fc0-454c3d153a7b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2c7158ae-90af-4266-a751-9b086e3f7a04\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +630,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:45 GMT + - Tue, 10 May 2022 03:44:07 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml index 50b00c43be8..6aac44cf40b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:30:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:38:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:07 GMT + - Tue, 10 May 2022 03:38:58 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaquqzkmh7-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestr7uswtv6e-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:10 GMT + - Tue, 10 May 2022 03:39:02 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -153,23 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:41 GMT + - Tue, 10 May 2022 03:39:32 GMT expires: - '-1' pragma: @@ -201,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:11 GMT + - Tue, 10 May 2022 03:40:02 GMT expires: - '-1' pragma: @@ -249,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:41 GMT + - Tue, 10 May 2022 03:40:33 GMT expires: - '-1' pragma: @@ -297,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:12 GMT + - Tue, 10 May 2022 03:41:03 GMT expires: - '-1' pragma: @@ -345,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:42 GMT + - Tue, 10 May 2022 03:41:33 GMT expires: - '-1' pragma: @@ -393,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:12 GMT + - Tue, 10 May 2022 03:42:03 GMT expires: - '-1' pragma: @@ -441,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:41 GMT + - Tue, 10 May 2022 03:42:33 GMT expires: - '-1' pragma: @@ -489,24 +493,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b9e04c9-6031-411e-bcbb-6f6cc9b4a0fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70af498f-691e-454c-9243-383eb400fe7e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9049e8b-3160-1e41-bcbb-6f6cc9b4a0fe\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:10.5666666Z\",\n \"endTime\": - \"2022-04-14T04:33:53.92002Z\"\n }" + string: "{\n \"name\": \"8f49af70-1e69-4c45-9243-383eb400fe7e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:39:02.78Z\",\n \"endTime\": + \"2022-05-10T03:42:46.9390836Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:11 GMT + - Tue, 10 May 2022 03:43:03 GMT expires: - '-1' pragma: @@ -538,39 +542,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -588,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:12 GMT + - Tue, 10 May 2022 03:43:03 GMT expires: - '-1' pragma: @@ -624,39 +628,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -674,11 +678,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:12 GMT + - Tue, 10 May 2022 03:43:03 GMT expires: - '-1' pragma: @@ -698,15 +702,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestaquqzkmh7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestr7uswtv6e-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -714,7 +718,7 @@ interactions: "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/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd"}]}, "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"}}, @@ -729,38 +733,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2547' + - '2540' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -769,7 +773,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -779,21 +783,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b5fa9-eb53-4ff2-8596-1ab592bd5018?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d40d1161-e4ce-4755-a3ec-4116faa4a49c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3900' + - '4079' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:14 GMT + - Tue, 10 May 2022 03:43:06 GMT expires: - '-1' pragma: @@ -827,23 +833,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b5fa9-eb53-4ff2-8596-1ab592bd5018?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d40d1161-e4ce-4755-a3ec-4116faa4a49c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95f3b4e-53eb-f24f-8596-1ab592bd5018\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:34:15.2433333Z\"\n }" + string: "{\n \"name\": \"61110dd4-cee4-5547-a3ec-4116faa4a49c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:07.18Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:34:44 GMT + - Tue, 10 May 2022 03:43:37 GMT expires: - '-1' pragma: @@ -875,23 +881,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b5fa9-eb53-4ff2-8596-1ab592bd5018?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d40d1161-e4ce-4755-a3ec-4116faa4a49c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95f3b4e-53eb-f24f-8596-1ab592bd5018\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:34:15.2433333Z\"\n }" + string: "{\n \"name\": \"61110dd4-cee4-5547-a3ec-4116faa4a49c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:07.18Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:15 GMT + - Tue, 10 May 2022 03:44:07 GMT expires: - '-1' pragma: @@ -923,24 +929,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b5fa9-eb53-4ff2-8596-1ab592bd5018?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d40d1161-e4ce-4755-a3ec-4116faa4a49c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95f3b4e-53eb-f24f-8596-1ab592bd5018\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:34:15.2433333Z\",\n \"endTime\": - \"2022-04-14T04:35:40.4773786Z\"\n }" + string: "{\n \"name\": \"61110dd4-cee4-5547-a3ec-4116faa4a49c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:43:07.18Z\",\n \"endTime\": + \"2022-05-10T03:44:23.6472683Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:45 GMT + - Tue, 10 May 2022 03:44:37 GMT expires: - '-1' pragma: @@ -972,32 +978,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1008,7 +1014,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1026,11 +1032,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:45 GMT + - Tue, 10 May 2022 03:44:37 GMT expires: - '-1' pragma: @@ -1062,32 +1068,32 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1098,7 +1104,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1116,11 +1122,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:46 GMT + - Tue, 10 May 2022 03:44:38 GMT expires: - '-1' pragma: @@ -1152,32 +1158,32 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1188,7 +1194,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1206,11 +1212,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:47 GMT + - Tue, 10 May 2022 03:44:38 GMT expires: - '-1' pragma: @@ -1230,15 +1236,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestaquqzkmh7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestr7uswtv6e-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1246,7 +1252,7 @@ interactions: "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/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd"}]}, "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"}}, @@ -1261,38 +1267,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2546' + - '2539' Content-Type: - application/json ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1301,7 +1307,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1311,21 +1317,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab4413a7-1474-45e5-b013-14d7a108e816?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d902b8ce-2618-47b1-9e19-8f9e4cd8e531?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3899' + - '4078' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:49 GMT + - Tue, 10 May 2022 03:44:41 GMT expires: - '-1' pragma: @@ -1359,23 +1367,23 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab4413a7-1474-45e5-b013-14d7a108e816?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d902b8ce-2618-47b1-9e19-8f9e4cd8e531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a71344ab-7414-e545-b013-14d7a108e816\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:49.19Z\"\n }" + string: "{\n \"name\": \"ceb802d9-1826-b147-9e19-8f9e4cd8e531\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:41.4033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:19 GMT + - Tue, 10 May 2022 03:45:11 GMT expires: - '-1' pragma: @@ -1407,23 +1415,23 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab4413a7-1474-45e5-b013-14d7a108e816?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d902b8ce-2618-47b1-9e19-8f9e4cd8e531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a71344ab-7414-e545-b013-14d7a108e816\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:49.19Z\"\n }" + string: "{\n \"name\": \"ceb802d9-1826-b147-9e19-8f9e4cd8e531\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:41.4033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:49 GMT + - Tue, 10 May 2022 03:45:41 GMT expires: - '-1' pragma: @@ -1455,24 +1463,24 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab4413a7-1474-45e5-b013-14d7a108e816?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d902b8ce-2618-47b1-9e19-8f9e4cd8e531?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a71344ab-7414-e545-b013-14d7a108e816\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:35:49.19Z\",\n \"endTime\": - \"2022-04-14T04:37:04.4525234Z\"\n }" + string: "{\n \"name\": \"ceb802d9-1826-b147-9e19-8f9e4cd8e531\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:44:41.4033333Z\",\n \"endTime\": + \"2022-05-10T03:46:01.7067286Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:19 GMT + - Tue, 10 May 2022 03:46:11 GMT expires: - '-1' pragma: @@ -1504,32 +1512,32 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaquqzkmh7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaquqzkmh7-8ecadf-2be80dc1.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr7uswtv6e-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr7uswtv6e-8ecadf-90f404f2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1540,7 +1548,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48e0cfea-c0ca-4a93-84cb-2462c0ecd1d8\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b6e7c059-c8dd-4991-aa43-cf54c9d1b1fd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1558,11 +1566,11 @@ interactions: cache-control: - no-cache content-length: - - '4278' + - '4271' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:20 GMT + - Tue, 10 May 2022 03:46:12 GMT expires: - '-1' pragma: @@ -1596,26 +1604,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/494b2c63-9c07-467a-9336-5d82f9766d7d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb790914-102d-4672-abfd-944e187cc62a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:37:21 GMT + - Tue, 10 May 2022 03:46:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/494b2c63-9c07-467a-9336-5d82f9766d7d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fb790914-102d-4672-abfd-944e187cc62a?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml index 52cb87578db..4775503d215 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:27:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:31:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:27:01 GMT + - Tue, 10 May 2022 03:31:50 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpoa2m7hbz-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttaospgdsd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:04 GMT + - Tue, 10 May 2022 03:31:55 GMT expires: - '-1' pragma: @@ -153,23 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:27:35 GMT + - Tue, 10 May 2022 03:32:24 GMT expires: - '-1' pragma: @@ -201,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:05 GMT + - Tue, 10 May 2022 03:32:55 GMT expires: - '-1' pragma: @@ -249,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:28:35 GMT + - Tue, 10 May 2022 03:33:25 GMT expires: - '-1' pragma: @@ -297,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:05 GMT + - Tue, 10 May 2022 03:33:55 GMT expires: - '-1' pragma: @@ -345,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:29:34 GMT + - Tue, 10 May 2022 03:34:26 GMT expires: - '-1' pragma: @@ -393,23 +397,311 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:34: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:35: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:04 GMT + - Tue, 10 May 2022 03:37:56 GMT expires: - '-1' pragma: @@ -441,24 +733,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fa41e7a-43e8-49e1-89e0-aa8e6f984bd2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dc1f2b-0f28-4fba-9473-703c2f35b194?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7a1ea47f-e843-e149-89e0-aa8e6f984bd2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:27:05.1666666Z\",\n \"endTime\": - \"2022-04-14T04:30:33.392052Z\"\n }" + string: "{\n \"name\": \"2b1fdcc0-280f-ba4f-9473-703c2f35b194\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:31:55.44Z\",\n \"endTime\": + \"2022-05-10T03:38:17.3126387Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:34 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -490,39 +782,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +832,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:35 GMT + - Tue, 10 May 2022 03:38:26 GMT expires: - '-1' pragma: @@ -576,39 +868,39 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +918,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:36 GMT + - Tue, 10 May 2022 03:38:27 GMT expires: - '-1' pragma: @@ -650,15 +942,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestpoa2m7hbz-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitesttaospgdsd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -666,7 +958,7 @@ interactions: "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/e7159591-54d8-4481-bd4a-97bf710d857a"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80"}]}, "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"}}, @@ -681,38 +973,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2511' + - '2504' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -721,7 +1013,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,21 +1023,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1080a662-8147-42c8-92ca-972b160edbff?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be5cf0e2-7427-4da6-a641-f1629505fedf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3858' + - '4037' content-type: - application/json date: - - Thu, 14 Apr 2022 04:30:43 GMT + - Tue, 10 May 2022 03:38:29 GMT expires: - '-1' pragma: @@ -779,14 +1073,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1080a662-8147-42c8-92ca-972b160edbff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be5cf0e2-7427-4da6-a641-f1629505fedf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62a68010-4781-c842-92ca-972b160edbff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:43.82Z\"\n }" + string: "{\n \"name\": \"e2f05cbe-2774-a64d-a641-f1629505fedf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:29.75Z\"\n }" headers: cache-control: - no-cache @@ -795,7 +1089,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:13 GMT + - Tue, 10 May 2022 03:38:59 GMT expires: - '-1' pragma: @@ -827,14 +1121,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1080a662-8147-42c8-92ca-972b160edbff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be5cf0e2-7427-4da6-a641-f1629505fedf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62a68010-4781-c842-92ca-972b160edbff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:30:43.82Z\"\n }" + string: "{\n \"name\": \"e2f05cbe-2774-a64d-a641-f1629505fedf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:38:29.75Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:31:44 GMT + - Tue, 10 May 2022 03:39:29 GMT expires: - '-1' pragma: @@ -875,15 +1169,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1080a662-8147-42c8-92ca-972b160edbff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be5cf0e2-7427-4da6-a641-f1629505fedf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62a68010-4781-c842-92ca-972b160edbff\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:30:43.82Z\",\n \"endTime\": - \"2022-04-14T04:31:59.8392949Z\"\n }" + string: "{\n \"name\": \"e2f05cbe-2774-a64d-a641-f1629505fedf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:38:29.75Z\",\n \"endTime\": + \"2022-05-10T03:39:51.2218346Z\"\n }" headers: cache-control: - no-cache @@ -892,7 +1186,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:00 GMT expires: - '-1' pragma: @@ -924,32 +1218,32 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -960,7 +1254,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -978,11 +1272,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:00 GMT expires: - '-1' pragma: @@ -1014,32 +1308,32 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1050,7 +1344,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1068,11 +1362,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:01 GMT expires: - '-1' pragma: @@ -1104,32 +1398,32 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1140,7 +1434,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1158,11 +1452,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:14 GMT + - Tue, 10 May 2022 03:40:01 GMT expires: - '-1' pragma: @@ -1182,15 +1476,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestpoa2m7hbz-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitesttaospgdsd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1198,7 +1492,7 @@ interactions: "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/e7159591-54d8-4481-bd4a-97bf710d857a"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80"}]}, "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"}}, @@ -1213,38 +1507,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2510' + - '2503' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1253,7 +1547,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1263,21 +1557,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60f1d096-4c0c-4110-b2e8-6b378dbcf19b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4423e2-8717-44e1-8c7f-3b4102a329ca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3857' + - '4036' content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:17 GMT + - Tue, 10 May 2022 03:40:04 GMT expires: - '-1' pragma: @@ -1293,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1311,14 +1607,14 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60f1d096-4c0c-4110-b2e8-6b378dbcf19b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4423e2-8717-44e1-8c7f-3b4102a329ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"96d0f160-0c4c-1041-b2e8-6b378dbcf19b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:17.6466666Z\"\n }" + string: "{\n \"name\": \"e223443f-1787-e144-8c7f-3b4102a329ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:04.8733333Z\"\n }" headers: cache-control: - no-cache @@ -1327,7 +1623,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:32:47 GMT + - Tue, 10 May 2022 03:40:34 GMT expires: - '-1' pragma: @@ -1359,14 +1655,14 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60f1d096-4c0c-4110-b2e8-6b378dbcf19b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4423e2-8717-44e1-8c7f-3b4102a329ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"96d0f160-0c4c-1041-b2e8-6b378dbcf19b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:32:17.6466666Z\"\n }" + string: "{\n \"name\": \"e223443f-1787-e144-8c7f-3b4102a329ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:40:04.8733333Z\"\n }" headers: cache-control: - no-cache @@ -1375,7 +1671,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:17 GMT + - Tue, 10 May 2022 03:41:05 GMT expires: - '-1' pragma: @@ -1407,24 +1703,24 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60f1d096-4c0c-4110-b2e8-6b378dbcf19b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4423e2-8717-44e1-8c7f-3b4102a329ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"96d0f160-0c4c-1041-b2e8-6b378dbcf19b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:32:17.6466666Z\",\n \"endTime\": - \"2022-04-14T04:33:35.429697Z\"\n }" + string: "{\n \"name\": \"e223443f-1787-e144-8c7f-3b4102a329ca\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:40:04.8733333Z\",\n \"endTime\": + \"2022-05-10T03:41:24.5211335Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:47 GMT + - Tue, 10 May 2022 03:41:34 GMT expires: - '-1' pragma: @@ -1456,32 +1752,32 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpoa2m7hbz-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpoa2m7hbz-8ecadf-4969da1a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttaospgdsd-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttaospgdsd-8ecadf-31f1fbe2.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1492,7 +1788,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7159591-54d8-4481-bd4a-97bf710d857a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/746540e8-8e33-49af-8526-e54af3c6de80\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1510,11 +1806,11 @@ interactions: cache-control: - no-cache content-length: - - '4226' + - '4219' content-type: - application/json date: - - Thu, 14 Apr 2022 04:33:47 GMT + - Tue, 10 May 2022 03:41:35 GMT expires: - '-1' pragma: @@ -1548,26 +1844,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf70a2f0-f976-495d-bf4d-017fe99f02a4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d9503b8-c738-4d4d-93fb-cb54d8eab090?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:33:48 GMT + - Tue, 10 May 2022 03:41:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/bf70a2f0-f976-495d-bf4d-017fe99f02a4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8d9503b8-c738-4d4d-93fb-cb54d8eab090?api-version=2016-03-30 pragma: - no-cache server: @@ -1577,7 +1873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml index fb450f7755d..2fd5d5bd4e6 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:30:06Z"},"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","date":"2022-05-10T03:38:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:07 GMT + - Tue, 10 May 2022 03:38:28 GMT expires: - '-1' pragma: @@ -62,21 +62,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"0f9e0cf8-a4fa-43c8-a0a6-43798f6c99c3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"de6e182b-579c-42f5-9bc5-670445f31414\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"882f2059-f929-45c5-bbc8-be812b3bb918\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"1f3a2668-52aa-47b4-b733-50b5b657bb25\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"0f9e0cf8-a4fa-43c8-a0a6-43798f6c99c3\\\"\",\r\n + \ \"etag\": \"W/\\\"de6e182b-579c-42f5-9bc5-670445f31414\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -87,7 +87,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c274c89-9c13-47ff-b960-23bb9dd33033?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc8a76c2-883a-4fea-bcec-610776c88a5e?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:07 GMT + - Tue, 10 May 2022 03:38:28 GMT expires: - '-1' pragma: @@ -108,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6aebfad-f1c8-4f1a-8cfc-59007836465f + - b6b0cb43-798a-475d-acde-856e66722fd1 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -128,9 +128,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/5c274c89-9c13-47ff-b960-23bb9dd33033?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc8a76c2-883a-4fea-bcec-610776c88a5e?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:10 GMT + - Tue, 10 May 2022 03:38:31 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d0a8e06a-29d8-4135-b455-c41fed73c0ec + - 5c96740b-2ca2-47e6-a80e-d7f14a62c25a status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"6eff039d-e92e-4dad-925c-a6b155978fbf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8bca354b-bfea-4794-9956-81c7bc55ca25\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"882f2059-f929-45c5-bbc8-be812b3bb918\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"1f3a2668-52aa-47b4-b733-50b5b657bb25\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"6eff039d-e92e-4dad-925c-a6b155978fbf\\\"\",\r\n + \ \"etag\": \"W/\\\"8bca354b-bfea-4794-9956-81c7bc55ca25\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -206,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:10 GMT + - Tue, 10 May 2022 03:38:31 GMT etag: - - W/"6eff039d-e92e-4dad-925c-a6b155978fbf" + - W/"8bca354b-bfea-4794-9956-81c7bc55ca25" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a636e5a-8c8b-41df-9461-ccc7c4ac29c5 + - 62dca1fa-23d5-4217-8d01-10af6d402f37 status: code: 200 message: OK @@ -243,21 +243,21 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"6eff039d-e92e-4dad-925c-a6b155978fbf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8bca354b-bfea-4794-9956-81c7bc55ca25\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"882f2059-f929-45c5-bbc8-be812b3bb918\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"1f3a2668-52aa-47b4-b733-50b5b657bb25\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"6eff039d-e92e-4dad-925c-a6b155978fbf\\\"\",\r\n + \ \"etag\": \"W/\\\"8bca354b-bfea-4794-9956-81c7bc55ca25\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -272,9 +272,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:12 GMT + - Tue, 10 May 2022 03:38:32 GMT etag: - - W/"6eff039d-e92e-4dad-925c-a6b155978fbf" + - W/"8bca354b-bfea-4794-9956-81c7bc55ca25" expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76d18529-ee79-45a3-9fc1-19fcdc684ce0 + - 02c843d5-3895-4dfe-b170-4a1d2d20e24a status: code: 200 message: OK @@ -321,28 +321,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"ed1b3086-2ae5-469d-a130-dc6a3179a0cd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"94da58fe-3e56-4e66-bbd0-21bb27dbf772\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"882f2059-f929-45c5-bbc8-be812b3bb918\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"1f3a2668-52aa-47b4-b733-50b5b657bb25\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"ed1b3086-2ae5-469d-a130-dc6a3179a0cd\\\"\",\r\n + \ \"etag\": \"W/\\\"94da58fe-3e56-4e66-bbd0-21bb27dbf772\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"ed1b3086-2ae5-469d-a130-dc6a3179a0cd\\\"\",\r\n + \ \"etag\": \"W/\\\"94da58fe-3e56-4e66-bbd0-21bb27dbf772\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8c537d89-9a90-45d2-839a-4d82522d5f19?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bcbff191-4711-4b76-8169-d1b404bdee15?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:14 GMT + - Tue, 10 May 2022 03:38:34 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3f85853-6d7c-4b1a-8e65-df33ad248854 + - 610f5090-09a0-4e4b-bc4d-5e8e9a0293a6 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -398,9 +398,9 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/8c537d89-9a90-45d2-839a-4d82522d5f19?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bcbff191-4711-4b76-8169-d1b404bdee15?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:17 GMT + - Tue, 10 May 2022 03:38:37 GMT expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 70e676de-0fc4-4b2e-8a15-57ea5ac2c520 + - 77e6edcc-27dc-4c4b-86c8-fc2b0b68c486 status: code: 200 message: OK @@ -447,28 +447,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"0c31b337-7d76-423e-a9eb-f126f601b43d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c5e91c04-254d-4b75-aa97-561d9f07b932\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"882f2059-f929-45c5-bbc8-be812b3bb918\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"1f3a2668-52aa-47b4-b733-50b5b657bb25\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"0c31b337-7d76-423e-a9eb-f126f601b43d\\\"\",\r\n + \ \"etag\": \"W/\\\"c5e91c04-254d-4b75-aa97-561d9f07b932\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"0c31b337-7d76-423e-a9eb-f126f601b43d\\\"\",\r\n + \ \"etag\": \"W/\\\"c5e91c04-254d-4b75-aa97-561d9f07b932\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -483,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:17 GMT + - Tue, 10 May 2022 03:38:37 GMT etag: - - W/"0c31b337-7d76-423e-a9eb-f126f601b43d" + - W/"c5e91c04-254d-4b75-aa97-561d9f07b932" expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed82315a-96b4-4cba-a1db-901e84e446aa + - e8ea8505-2b44-4a09-ae88-756622da77cf status: code: 200 message: OK @@ -520,21 +520,21 @@ interactions: ParameterSetName: - -n -g --allocation-method --sku -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:30:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:38:27Z","deletion_due_time":"1652413110","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:16 GMT + - Tue, 10 May 2022 03:38:37 GMT expires: - '-1' pragma: @@ -567,15 +567,15 @@ interactions: ParameterSetName: - -n -g --allocation-method --sku -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/appgw-ip?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"appgw-ip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip\",\r\n - \ \"etag\": \"W/\\\"cee02b8c-ce51-49c5-a9ae-839a8cea5776\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cede18d1-7411-4fb7-9a99-b9f56f1de48d\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"33308c84-05cf-485e-b0a2-00926111147d\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"79a1ce57-16e3-42fb-bff3-d16e4c48e4ba\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -584,7 +584,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/51b08dcf-4c0e-4d3e-9357-41d311f68e8e?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d00d7129-12f6-4d8d-8fc7-5ef031711a5b?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -592,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:18 GMT + - Tue, 10 May 2022 03:38:38 GMT expires: - '-1' pragma: @@ -605,7 +605,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d27fe7e-9509-497f-87c4-f421876c912b + - 403773bf-9f11-401c-beb5-34623ed0ef2f x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -625,9 +625,9 @@ interactions: ParameterSetName: - -n -g --allocation-method --sku -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/51b08dcf-4c0e-4d3e-9357-41d311f68e8e?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d00d7129-12f6-4d8d-8fc7-5ef031711a5b?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -639,7 +639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:19 GMT + - Tue, 10 May 2022 03:38:39 GMT expires: - '-1' pragma: @@ -656,7 +656,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 480d7905-4f64-4eda-a926-8af9d1e65a7d + - 3675c424-4085-4c0a-8eab-d406307fa302 status: code: 200 message: OK @@ -674,16 +674,16 @@ interactions: ParameterSetName: - -n -g --allocation-method --sku -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/appgw-ip?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"appgw-ip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip\",\r\n - \ \"etag\": \"W/\\\"2e153154-2bc2-4eef-98c5-33f7191c2812\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ff253715-5b9e-4950-bd07-67ce4d2510df\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"33308c84-05cf-485e-b0a2-00926111147d\",\r\n \"ipAddress\": - \"20.94.202.241\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"79a1ce57-16e3-42fb-bff3-d16e4c48e4ba\",\r\n \"ipAddress\": + \"20.230.172.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -695,9 +695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:19 GMT + - Tue, 10 May 2022 03:38:39 GMT etag: - - W/"2e153154-2bc2-4eef-98c5-33f7191c2812" + - W/"ff253715-5b9e-4950-bd07-67ce4d2510df" expires: - '-1' pragma: @@ -714,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f10ab6b1-c5d2-41b5-8d54-d0ee4f6a5fdc + - 77584762-8c5f-4c9c-a451-489c29c8e42c status: code: 200 message: OK @@ -732,21 +732,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:30:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:38:27Z","deletion_due_time":"1652413110","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:18 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -774,63 +774,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27clitest000001%27%20and%20name%20eq%20%27cliakstest000003%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2021-04-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2fvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Yk0wOEVYQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0hYd0FBZ0FVQUFBUVFBQUFBRkFBQUIxOEFBSUFGQUFBYUFNeVRBOENnQW9FSkdBQmtnUVdBMzQ4QWdCSUFRQ0FVQUpXTkNGOEFBSUFGQUFBV0FSRURBd0RUQUJnQUFNQkI3QklBRUNLNUhzRUErQU1XQUlBTEFCemdBUHdBQVBpckRPSUFBTUFQQWhNQUFCd0VBQUJBSVFEd0E0dUFJZ0NTRUlHQUVRQURCR29CTUFBQUlJQVRBT2dXQUVnQUFCWUFWMzJJQVJnN2dESUJBTUFmQUZRQUFNQUNJQUNBQUFFUWdLRUNRRUNEQUlFSUJnRUVES09BRG9DQkFRRUJFUUFBRWlFR1FBSVNBQ0NJRUFBQkFzQUFJUUFPQUJJQVJBTkFBaFFBWWl1QkJJQUFZQUVTQUVBRUVnQkJBQUFSSVFCVUFzSUFBT0FQQUJJQTRBRUFDRE1CSUFJQVFBRUFod0FBVUFBZ0FRQVFvZ0RBUUFBZ0p2T0VGUkFZQU9BQThBUHduMFFBNFFEQUgxTUFPQUFBQkFCQVZRQXdBQURBZ2ZRQXhHTUIwZ0FBSWtFQTRnQkNEZ1FnRVFCZ0FFU0FBSUQ4Z0FpQUNWOEFBSUFGQUFDUUFQRUlBQXdVQUE3Z05JQzE0d1FBSVFQZ0QwSUFCd0ZBQUVXQUFZRWtBSUJsR0FJQUJnQUJZb0VPZ0FXQWxnY3dBQUJ3UHdBVUFBS0Fyd01pQVFEQVZ3QkRBQURBUVFBQUFyYUFBb0E3Z0FiQUFEaGdFQUFRQ0FBQUFDSUFDb0VOZ0xFTEFNQVVBQTdiQUlBMFFHdWcwUUIvQUJJQU9CQUJBQzJCQW9BRmdERUFBQXdpQUJnSVFBQk1nQU9BMFFBQW9BcGZBQUNBQlFBQXpnQTZnZnlCNUlFSWdETUpEQUFBYUhnRkhvQUJ3UHhyY2dBQWNBOEFJZ0FQQUJBQTlBQUV3QUNEUUFBeEFFK0FZUURBQUxXQ3dRVUFHQllBZ0FNWXdTQUFBRUFRQUFJQUVJQnlBQUNSQUFnU0F3RENFQUEvaWd1QUE4QUEvZzhBd1B2eEFMQUFFZ0FBWUFJbXNRQUFBekVBTGdBUkFBQURGQUNBQXdCOUFPSWFIek9BRVFBQW9EK0FBY0F3QVZRQi9nQUF3SUVBQ0FCaEFRQy9JZ0FBbkFBQ1F3QUFSVW9FSUJnUkFJQUJJUUFBTUxJRkJnQWdBQkVBTUFGREJBZ0VhU0VDTU1FQWdCQ3pBUVlBQU9BQkFBdGZBQUNBQlFBQVpBRjVoVUlDQ1FBQXVFbUNJUUFBT2tFQVVDRUZCUXdBQUlBR3BRVkEreldoQUg4QVdZQUR3QUFZQUFBUUFsRUNBRUV5QUFDckNSZ1JBUUVCZ1FDQUFSY0FBSEQ0QVFDQVFCQUJJSnNCRUFDVEFBQUtBSUVZQUdJQUFQQUhBQklBT0FFSUFIeUJBb0FrQUFBSlFEQVFFRUlBMGdIQUFRRUFGQUFjUUZjQXdLaytBZUVBL0FFVEFPQUFBUUJBQUVhQk40QUR3R0JFQkFnSVdER0FqWUFKZ0NVREFBTUE0QUNETkVEdkQ3RUFBQU1SQU1BQkVRQUF5aEVBQmdCMWdBWEFBQW1DSUFBQUVJUGdFR0VBdndCUkFBQ09MWUNCQVBBSElnQndnQUFnR29FVEFBSWtXQVFNQUltQXdnQWdFR0tKSG9BQndBQmdMSUFOZ0NDQkJZQUNnVVVEZ0FFQWdPTUw4RzhGQUdJQUFQZ0RBRElBQUJ3Z0FCT0FMWUIxZ0pFQkJnQXhBRUFLRmdBQUJVMEFBT0RBQklnUUdRQWhBZndCRndBQTRBZ0FJRUFBQXFxQU1BaEFBSkVDQUE0U0FnQ0ZBUUNqQUJBQkVITUFCTnFCd1FBQUNrNkJLSUFSZ0F4ZkFBQ0FCUUFBV2dGTmd4RUFaQUFSQUlJUWtRRVlBQlFBNE1BYkFFUTVmUUNVQUFEd0J3RDhnQm9BRkFBQWRJUUFBTUFEQUJNQXdBb1FFZ0VBY2dEQUFBQ0Zjd0g4QVFEZ0FnR1JBZ1lBRlFEZ0FJaVVRQUFBUU9zM0pRQUc4RHNBZ0l5eEN3SUFZUUNBUHpZQWNPSVBBVGdCQ0lBQ0JLb0FFWUFIZ0FIQUZBQzdnZ0dBTTRBakFBQlFEZ0ZCQVNDQW1ZSUJnSEtBQThCZ0VDa0pZQUFXZ2dDQXN3UURBSUR6QXdBU0FQQi9BUUFpQUFDR1NRQWhBSUEvSVFCT0JPRUJNQUFsQUFjQWdDcFFBRWowamhDWkFMcENBSXhGQUdqZ2dRSUFjemtKQWdCL0FCRUFEZ0Z0Z0NNQjRBY0lGQUNPSklCaEFTQWNNUUI0QU1FQkJnQmxBSUVBS2xBQUdBQUlBZ0F2Z0FhQUE4Q0FRSEFCSUFZakFEZ0NRQUFnSmNFQmdBZ1NBQURJQkFBaUFHQUFxQklmZ0FUQUV3Z0FDQkFBQVFCM0J3QmdBTUI1QlFEMEZVQUFNQUlBMHdEOEFRQndJQUFYZ0grSFpRUEFBQURnOEFZTXE3UUNEVjhBQUlBRkFBQ1dBQWZBWUFBQUFBQWNBQUJsVURESG5RQ2tBQURnRHdBQWpnQUNLNEVVQUJKbFRRQUdKQU1BOFFBS0FEK0dXNE15QUlDQUJBQWlBQ0pBQUJBM2d6cVA0d1Btc0lmZk9RQmtBQUQ4QVFCd0JJQUEyWUZoZ0Y2QUM0QUh3QXdFQUtnQkVBQU5RQllBQUFBVWNJUVRBRUFrQUFFSkFNRUpBR0FSQUJRU1JBUUFERGpBSjdiV0VaSUEvZ0J3SlBxQUFzQVp3UlF3am9BRmdBNWZBQUNBQlFBQW9BRHJpOUVCQUdBVUFBQWNid0NON3dFQWtRQ0FQMUVBTEVBWGdDWUJBS0JpUUFJQXdBQUFCQWdBVVFJQWlBdUVzUUFBR0JRQU9BQTg1c3RVQVFBaEFYb0tRZ0kwQUFBRVA0Q1dCRVFBQVFBUVFJR0VBQVFBQVE2QkNJQmlBUmdoQmdENmdBS0FJUUJOQUhJT0FBTTVBSVlDQUFNQU9BQmdnd1N3UG9CRkVnSUE4QWNBRXdBQWNCQUFRQUEyZ1BRQkFFMHhBUUFJQXdBYWdnU0F2NEVCd0NFeUQxOEFBSUFGQUFDR0FQYU01b2V1aFFDQUFjQmlBbkVER0FBMUFCd3BFREFBZ0d3N01BQ3hBQUQrSXdBQU9JQUFBZ0RFQXhnQUFJZTV3TjVPL1lBQndGa0JMb0FmZ0FQQVB3Q0FBd0lRVXdRQUZBWmRCUUN1Z2dHQTRRd3dBQlVBQUE4QUlLMFNJR0wrVzNFQXdCOFNBT0FRRUFDaEFvQkFJd0FBa0ljaVlBQ0JBQWtBYjRFRXdBOEFBQkFnQUlDQUVGOEFBSUFGQUFCeUFOdUFRZ0RRQWdRWW1vSVNBQUNDZHdDb2dTdUEySUJCQUlBQkZBQUhmQUVBc3VJdUFHTUE4QWNBSEFpQUw0RUNnQWJBQkNBMEdHQUFBd0RueCs4VlBZQURnQ01BQVBnRDJBQUJzUUVBQXhNQUFnckNBV0FBRVFBR05oUUFvQXhzQUtDdCt3WmhBQUFSSkFBQStBTUFBRGhBRU5oZkFBQ0FCUUFBQ2dEUkdZQUhFUUFFRHJlQzJWOEFBSUFGQUFBR0FOSWdVS2dIQU50ZkFBQ0FCUUFBREFBREZBQmdCQVFBZ0FFSEJrUGNYd0FBZ0FVQUFBd0FVZ0lDckVNQTlvZUNnQktBMzE4QUFJQUZBQUFLQUx5amN3WUFaQUFRZ0FmaFh3QUFnQVVBQUNBQWhBaUFmMytrOWU4b0pENkFFWUFOZ0FmQUFBd0l4ZjMvb3djQUFBQ2dBUUNjWUFBQWdBVUFBR3dBOG82M2liTUFBTUFBd0FFQXJvRUJ3QUNRUElBQmdDT0Eyb0h4QUlFQUlnQkJCQUlBaElFQWdBSEFiQURyZ1ZJQUFJWUlBQklBaUpFQ0FERUJBQ2dSQUFDTUVnQUFZQ0FFY1FFQUpJYUFBY0FJQkJDQVpJQnRnSm1BWVEwQUpIRUFRZ0N4QmhnQUVnQ0FTQVFBbldBQUFJQUZBQUFDQU5PQW9XQUFBSUFGQUFCQ0FPY1lBTmdWc2s4SEFFU0E0QUpQZGdIUmdCU0JtSUVrZ0NLQWhBRUNBZ0RRRkdJRkFJV0NjWUFwZ0ErQUtZQUJ3QWtBTVFDUUFubUJBY0FnQkxpQUxZQ0VnS0pnQUFDQUJRQUFJQUIvc0FMQXdnTWdDR1NBRG9BQndFZ0FNUUFLQUJ5QUFjQUpRTUlDQUF6UUFhbGdBQUNBQlFBQUFnREV2NnBnQUFDQUJRQUFFZ0JQZ2V5QXNRQlVBQkNoaUpON2c2U0EvWUFFRUFBQUFCUUFBQUlBQktFPVwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '4908' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:30:19 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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2FvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Yk0wOEVYQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0hYd0FBZ0FVQUFBUVFBQUFBRkFBQUIxOEFBSUFGQUFBYUFNeVRBOENnQW9FSkdBQmtnUVdBMzQ4QWdCSUFRQ0FVQUpXTkNGOEFBSUFGQUFBV0FSRURBd0RUQUJnQUFNQkI3QklBRUNLNUhzRUErQU1XQUlBTEFCemdBUHdBQVBpckRPSUFBTUFQQWhNQUFCd0VBQUJBSVFEd0E0dUFJZ0NTRUlHQUVRQURCR29CTUFBQUlJQVRBT2dXQUVnQUFCWUFWMzJJQVJnN2dESUJBTUFmQUZRQUFNQUNJQUNBQUFFUWdLRUNRRUNEQUlFSUJnRUVES09BRG9DQkFRRUJFUUFBRWlFR1FBSVNBQ0NJRUFBQkFzQUFJUUFPQUJJQVJBTkFBaFFBWWl1QkJJQUFZQUVTQUVBRUVnQkJBQUFSSVFCVUFzSUFBT0FQQUJJQTRBRUFDRE1CSUFJQVFBRUFod0FBVUFBZ0FRQVFvZ0RBUUFBZ0p2T0VGUkFZQU9BQThBUHduMFFBNFFEQUgxTUFPQUFBQkFCQVZRQXdBQURBZ2ZRQXhHTUIwZ0FBSWtFQTRnQkNEZ1FnRVFCZ0FFU0FBSUQ4Z0FpQUNWOEFBSUFGQUFDUUFQRUlBQXdVQUE3Z05JQzE0d1FBSVFQZ0QwSUFCd0ZBQUVXQUFZRWtBSUJsR0FJQUJnQUJZb0VPZ0FXQWxnY3dBQUJ3UHdBVUFBS0Fyd01pQVFEQVZ3QkRBQURBUVFBQUFyYUFBb0E3Z0FiQUFEaGdFQUFRQ0FBQUFDSUFDb0VOZ0xFTEFNQVVBQTdiQUlBMFFHdWcwUUIvQUJJQU9CQUJBQzJCQW9BRmdERUFBQXdpQUJnSVFBQk1nQU9BMFFBQW9BcGZBQUNBQlFBQXpnQTZnZnlCNUlFSWdETUpEQUFBYUhnRkhvQUJ3UHhyY2dBQWNBOEFJZ0FQQUJBQTlBQUV3QUNEUUFBeEFFK0FZUURBQUxXQ3dRVUFHQllBZ0FNWXdTQUFBRUFRQUFJQUVJQnlBQUNSQUFnU0F3RENFQUEvaWd1QUE4QUEvZzhBd1B2eEFMQUFFZ0FBWUFJbXNRQUFBekVBTGdBUkFBQURGQUNBQXdCOUFPSWFIek9BRVFBQW9EK0FBY0F3QVZRQi9nQUF3SUVBQ0FCaEFRQy9JZ0FBbkFBQ1F3QUFSVW9FSUJnUkFJQUJJUUFBTUxJRkJnQWdBQkVBTUFGREJBZ0VhU0VDTU1FQWdCQ3pBUVlBQU9BQkFBdGZBQUNBQlFBQVpBRjVoVUlDQ1FBQXVFbUNJUUFBT2tFQVVDRUZCUXdBQUlBR3BRVkEreldoQUg4QVdZQUR3QUFZQUFBUUFsRUNBRUV5QUFDckNSZ1JBUUVCZ1FDQUFSY0FBSEQ0QVFDQVFCQUJJSnNCRUFDVEFBQUtBSUVZQUdJQUFQQUhBQklBT0FFSUFIeUJBb0FrQUFBSlFEQVFFRUlBMGdIQUFRRUFGQUFjUUZjQXdLaytBZUVBL0FFVEFPQUFBUUJBQUVhQk40QUR3R0JFQkFnSVdER0FqWUFKZ0NVREFBTUE0QUNETkVEdkQ3RUFBQU1SQU1BQkVRQUF5aEVBQmdCMWdBWEFBQW1DSUFBQUVJUGdFR0VBdndCUkFBQ09MWUNCQVBBSElnQndnQUFnR29FVEFBSWtXQVFNQUltQXdnQWdFR0tKSG9BQndBQmdMSUFOZ0NDQkJZQUNnVVVEZ0FFQWdPTUw4RzhGQUdJQUFQZ0RBRElBQUJ3Z0FCT0FMWUIxZ0pFQkJnQXhBRUFLRmdBQUJVMEFBT0RBQklnUUdRQWhBZndCRndBQTRBZ0FJRUFBQXFxQU1BaEFBSkVDQUE0U0FnQ0ZBUUNqQUJBQkVITUFCTnFCd1FBQUNrNkJLSUFSZ0F4ZkFBQ0FCUUFBV2dGTmd4RUFaQUFSQUlJUWtRRVlBQlFBNE1BYkFFUTVmUUNVQUFEd0J3RDhnQm9BRkFBQWRJUUFBTUFEQUJNQXdBb1FFZ0VBY2dEQUFBQ0Zjd0g4QVFEZ0FnR1JBZ1lBRlFEZ0FJaVVRQUFBUU9zM0pRQUc4RHNBZ0l5eEN3SUFZUUNBUHpZQWNPSVBBVGdCQ0lBQ0JLb0FFWUFIZ0FIQUZBQzdnZ0dBTTRBakFBQlFEZ0ZCQVNDQW1ZSUJnSEtBQThCZ0VDa0pZQUFXZ2dDQXN3UURBSUR6QXdBU0FQQi9BUUFpQUFDR1NRQWhBSUEvSVFCT0JPRUJNQUFsQUFjQWdDcFFBRWowamhDWkFMcENBSXhGQUdqZ2dRSUFjemtKQWdCL0FCRUFEZ0Z0Z0NNQjRBY0lGQUNPSklCaEFTQWNNUUI0QU1FQkJnQmxBSUVBS2xBQUdBQUlBZ0F2Z0FhQUE4Q0FRSEFCSUFZakFEZ0NRQUFnSmNFQmdBZ1NBQURJQkFBaUFHQUFxQklmZ0FUQUV3Z0FDQkFBQVFCM0J3QmdBTUI1QlFEMEZVQUFNQUlBMHdEOEFRQndJQUFYZ0grSFpRUEFBQURnOEFZTXE3UUNEVjhBQUlBRkFBQ1dBQWZBWUFBQUFBQWNBQUJsVURESG5RQ2tBQURnRHdBQWpnQUNLNEVVQUJKbFRRQUdKQU1BOFFBS0FEK0dXNE15QUlDQUJBQWlBQ0pBQUJBM2d6cVA0d1Btc0lmZk9RQmtBQUQ4QVFCd0JJQUEyWUZoZ0Y2QUM0QUh3QXdFQUtnQkVBQU5RQllBQUFBVWNJUVRBRUFrQUFFSkFNRUpBR0FSQUJRU1JBUUFERGpBSjdiV0VaSUEvZ0J3SlBxQUFzQVp3UlF3am9BRmdBNWZBQUNBQlFBQW9BRHJpOUVCQUdBVUFBQWNid0NON3dFQWtRQ0FQMUVBTEVBWGdDWUJBS0JpUUFJQXdBQUFCQWdBVVFJQWlBdUVzUUFBR0JRQU9BQTg1c3RVQVFBaEFYb0tRZ0kwQUFBRVA0Q1dCRVFBQVFBUVFJR0VBQVFBQVE2QkNJQmlBUmdoQmdENmdBS0FJUUJOQUhJT0FBTTVBSVlDQUFNQU9BQmdnd1N3UG9CRkVnSUE4QWNBRXdBQWNCQUFRQUEyZ1BRQkFFMHhBUUFJQXdBYWdnU0F2NEVCd0NFeUQxOEFBSUFGQUFDR0FQYU01b2V1aFFDQUFjQmlBbkVER0FBMUFCd3BFREFBZ0d3N01BQ3hBQUQrSXdBQU9JQUFBZ0RFQXhnQUFJZTV3TjVPL1lBQndGa0JMb0FmZ0FQQVB3Q0FBd0lRVXdRQUZBWmRCUUN1Z2dHQTRRd3dBQlVBQUE4QUlLMFNJR0wrVzNFQXdCOFNBT0FRRUFDaEFvQkFJd0FBa0ljaVlBQ0JBQWtBYjRFRXdBOEFBQkFnQUlDQUVGOEFBSUFGQUFCeUFOdUFRZ0RRQWdRWW1vSVNBQUNDZHdDb2dTdUEySUJCQUlBQkZBQUhmQUVBc3VJdUFHTUE4QWNBSEFpQUw0RUNnQWJBQkNBMEdHQUFBd0RueCs4VlBZQURnQ01BQVBnRDJBQUJzUUVBQXhNQUFnckNBV0FBRVFBR05oUUFvQXhzQUtDdCt3WmhBQUFSSkFBQStBTUFBRGhBRU5oZkFBQ0FCUUFBQ2dEUkdZQUhFUUFFRHJlQzJWOEFBSUFGQUFBR0FOSWdVS2dIQU50ZkFBQ0FCUUFBREFBREZBQmdCQVFBZ0FFSEJrUGNYd0FBZ0FVQUFBd0FVZ0lDckVNQTlvZUNnQktBMzE4QUFJQUZBQUFLQUx5amN3WUFaQUFRZ0FmaFh3QUFnQVVBQUNBQWhBaUFmMytrOWU4b0pENkFFWUFOZ0FmQUFBd0l4ZjMvb3djQUFBQ2dBUUNjWUFBQWdBVUFBR3dBOG82M2liTUFBTUFBd0FFQXJvRUJ3QUNRUElBQmdDT0Eyb0h4QUlFQUlnQkJCQUlBaElFQWdBSEFiQURyZ1ZJQUFJWUlBQklBaUpFQ0FERUJBQ2dSQUFDTUVnQUFZQ0FFY1FFQUpJYUFBY0FJQkJDQVpJQnRnSm1BWVEwQUpIRUFRZ0N4QmhnQUVnQ0FTQVFBbldBQUFJQUZBQUFDQU5PQW9XQUFBSUFGQUFCQ0FPY1lBTmdWc2s4SEFFU0E0QUpQZGdIUmdCU0JtSUVrZ0NLQWhBRUNBZ0RRRkdJRkFJV0NjWUFwZ0ErQUtZQUJ3QWtBTVFDUUFubUJBY0FnQkxpQUxZQ0VnS0pnQUFDQUJRQUFJQUIvc0FMQXdnTWdDR1NBRG9BQndFZ0FNUUFLQUJ5QUFjQUpRTUlDQUF6UUFhbGdBQUNBQlFBQUFnREV2NnBnQUFDQUJRQUFFZ0JQZ2V5QXNRQlVBQkNoaUpON2c2U0EvWUFFRUFBQUFCUUFBQUlBQktFPVwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D - response: - body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2fvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4YkU4OElYQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0xYd0FBZ0FVQUFBUVFBQUFBRkFBQUMxOEFBSUFGQUFBMEFNU3pJUUg4QVJjQUFPQUlBQ0JBQUFLcWdEQUlRQUNSQWdBT0VnSUFoUUVBb3dBUUFSQnpBQVRhZ2NFQUFBcE9nU2lBRVlBTVh3QUFnQVVBQUZvQlRZTVJBR1FBRVFDQ0VKRUJHQUFVQU9EQUd3QkVPWDBBbEFBQThBY0EvSUFhQUJRQUFIU0VBQURBQXdBVEFNQUtFQklCQUhJQXdBQUFoWE1CL0FFQTRBSUJrUUlHQUJVQTRBQ0lsRUFBQUVEck55VUFCdkE3QUlDTXNRc0NBR0VBZ0Q4MkFIRGlEd0U0QVFpQUFnU3FBQkdBQjRBQndCUUF1NElCZ0RPQUl3QUFVQTRCUVFFZ2dKbUNBWUJ5Z0FQQVlCQXBDV0FBRm9JQWdMTUVBd0NBOHdNQUVnRHdmd0VBSWdBQWhra0FJUUNBUHlFQVRnVGhBVEFBSlFBSEFJQXFVQUJJOUk0UW1RQzZRZ0NNUlFCbzRJRUNBSE01Q1FJQWZ3QVJBQTRCYllBakFlQUhDQlFBamlTQVlRRWdIREVBZUFEQkFRWUFaUUNCQUNwUUFCZ0FDQUlBTDRBR2dBUEFnRUJ3QVNBR0l3QTRBa0FBSUNYQkFZQUlFZ0FBeUFRQUlnQmdBS2dTSDRBRXdCTUlBQWdRQUFFQWR3Y0FZQURBZVFVQTlCVkFBREFDQU5NQS9BRUFjQ0FBRjRCL2gyVUR3QUFBNFBBR0RLdTBBZzFmQUFDQUJRQUFsZ0FId0dBQUFBQUFIQUFBWlZBd3g1MEFwQUFBNEE4QUFJNEFBaXVCRkFBU1pVMEFCaVFEQVBFQUNnQS9obHVETWdDQWdBUUFJZ0FpUUFBUU40TTZqK01ENXJDSDN6a0FaQUFBL0FFQWNBU0FBTm1CWVlCZWdBdUFCOEFNQkFDb0FSQUFEVUFXQUFBQUZIQ0VFd0JBSkFBQkNRREJDUUJnRVFBVUVrUUVBQXc0d0NlMjFoR1NBUDRBY0NUNmdBTEFHY0VVTUk2QUJZQU9Yd0FBZ0FVQUFLQUE2NHZSQVFCZ0ZBQUFIRzhBamU4QkFKRUFnRDlSQUN4QUY0QW1BUUNnWWtBQ0FNQUFBQVFJQUZFQ0FJZ0xoTEVBQUJnVUFEZ0FQT2JMVkFFQUlRRjZDa0lDTkFBQUJEK0FsZ1JFQUFFQUVFQ0JoQUFFQUFFT2dRaUFZZ0VZSVFZQStvQUNnQ0VBVFFCeURnQURPUUNHQWdBREFEZ0FZSU1Fc0Q2QVJSSUNBUEFIQUJNQUFIQVFBRUFBTm9EMEFRQk5NUUVBQ0FNQUdvSUVnTCtCQWNBaE1nOWZBQUNBQlFBQWhnRDJqT2FIcm9VQWdBSEFZZ0p4QXhnQU5RQWNLUkF3QUlCc096QUFzUUFBL2lNQUFEaUFBQUlBeEFNWUFBQ0h1Y0RlVHYyQUFjQlpBUzZBSDRBRHdEOEFnQU1DRUZNRUFCUUdYUVVBcm9JQmdPRU1NQUFWQUFBUEFDQ3RFaUJpL2x0eEFNQWZFZ0RnRUJBQW9RS0FRQ01BQUpDSEltQUFnUUFKQUcrQkJNQVBBQUFRSUFDQWdCQmZBQUNBQlFBQWNnRGJnRUlBMEFJRUdKcUNFZ0FBZ25jQXFJRXJnTmlBUVFDQUFSUUFCM3dCQUxMaUxnQmpBUEFIQUJ3SWdDK0JBb0FHd0FRZ05CaGdBQU1BNThmdkZUMkFBNEFqQUFENEE5Z0FBYkVCQUFNVEFBSUt3Z0ZnQUJFQUJqWVVBS0FNYkFDZ3Jmc0dZUUFBRVNRQUFQZ0RBQUE0UUJEWVh3QUFnQVVBQUFvQTBSbUFCeEVBQkE2M2d0bGZBQUNBQlFBQUJnRFNJRkNvQndEYlh3QUFnQVVBQUF3QUF4UUFZQVFFQUlBQkJ3WkQzRjhBQUlBRkFBQU1BRklDQXF4REFQYUhnb0FTZ045ZkFBQ0FCUUFBQ2dDOG8zTUdBR1FBRUlBSDRWOEFBSUFGQUFBZ0FJUUlnSDkvcFBYdktDUStnQkdBRFlBSHdBQU1DTVg5LzZNSEFBQUFvQUVBbkdBQUFJQUZBQUJzQVBLT3Q0bXpBQURBQU1BQkFLNkJBY0FBa0R5QUFZQWpnTnFCOFFDQkFDSUFRUVFDQUlTQkFJQUJ3R3dBNjRGU0FBQ0dDQUFTQUlpUkFnQXhBUUFvRVFBQWpCSUFBR0FnQkhFQkFDU0dnQUhBQ0FRUWdHU0FiWUNaZ0dFTkFDUnhBRUlBc1FZWUFCSUFnRWdFQUoxZ0FBQ0FCUUFBQWdEVGdLRmdBQUNBQlFBQVFnRG5HQURZRmJKUEJ3QkVnT0FDVDNZQjBZQVVnWmlCSklBaWdJUUJBZ0lBMEJSaUJRQ0ZnbkdBS1lBUGdDbUFBY0FKQURFQWtBSjVnUUhBSUFTNGdDMkFoSUNpWUFBQWdBVUFBQ0FBZjdBQ3dNSURJQWhrZ0E2QUFjQklBREVBQ2dBY2dBSEFDVURDQWdBTTBBR3BZQUFBZ0FVQUFBSUF4TCtxWUFBQWdBVUFBQklBVDRIc2dMRUFWQUFRb1lpVGU0T2tnUDJBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2fvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Wm1MejhZQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnajhZQUFBZ0FVQUFBUVFBQUFBRkFBQS9HQUFBSUFGQUFBTUFHRXZRSUFmZ0FDQTBRQUFVUDFnQUFDQUJRQUFVQUFSRXNjTVJBM1FpUUVDSUFBQ0FoSUl3S1VURkpFQkhBQkNBQUFxQVFCaUFBd0FKQUJVQUFEWWJRTVUzUThBVkFBQThBY0FBQmNFQUJFQURnQWdnUklBZ0JJc05KRUFBS0RkZ3dMQUxBQkFCLzVnQUFDQUJRQUFLQUFla3dYQUJDUU1BQUFBQUdzQ0FIVXJEQUFBSFBCRFZYNElBR0lBQVBnR0FCRUFIQUVSZ0ErQS8yQUFBSUFGQUFBK0FBSEFCUUQwZ1FQQUNLa1JBQXdBcjRBRWdQS2RJSUJrQUFDZ0RRQWdBRUFGTVlHaEVRREFGQUFIK0FJQUQ5NEVRT1lBQVBnREFBRGdRQUJBQU1BRUFHRUFBSUFGQUFCYUFKRURRQWhqQUFBT1FGa0JBQkVBL3cveUJBREFId0FqQURnQUFRQUFCQ0VBRmdCV2lRNkFCTUREQVVTTzJnREZNZTJETWdBQUNTSUFWWVVCd0NvQVRvQU5nQXVBQUlDWGdVK0xBY0FBWUN5QUI0QUxnQUdBRDRFaGpRRmhBQUNBQlFBQU9BREZCUU1BY0lCdEFCQy9FUU9CQVFEK1VnQUFOQVFBR0lBaEFCd0Flb1FpQUFERlJnQVJnSnFBd1FZQVFSK0xBWUFUQUFKQUFCQWdBQUpoQUFDQUJRQUFyZ0VGRFFBREFBY3hCN2FaQXdRUkFmb0JFZ0FBNEFDQ0w0QUJ3QW9BSElBQndKQUlRZ0FFRUFJQnpZTXVnRElBS1BDSUFzK0JBb0FSQThBQU1nQUhnS2dGRWdCY1o5QUFad0dBd1I4QWdBQUFBd2NRQURqQXF4SUFBSDYzQUpJQUFQd0JBRU1BQUFjUUFBQUlRZ0FBQlFRQUVRREFBQkVBRmdBVUFLQ1VBUWhodlNRQVVnQVlBQmdBS3dBQWNNRGkrUUtBQklEMVgvOUtBQURBSHdBQTBDdk1FZ0JvQUFBQ0VnQXcrUGNIRXdBQTRONEFnQ1FpQUFBd0R3QWtBRUFTVEFnSUFBd0FTb0FEZ0ZFQUNJQWpBUWhRU0VRUUFDRUF3QUF6Z0MyQUE4Q0VCS0FQSUFCUkFBR0FsNEF4Z05FQkFBWkVBQTRBbkFNd1ZPTUZrUUFBWUJFQUVRWlBnQWJBQmdBQUFBRDhBWUFUQUNBQTJJSVRBRUJRS0FVQUJVRUJRQWlJQVdCc2dJa1FCQUE0aG9hQUtvVUJLd0FoQWJBUExvQUJ3SndBVVFBRVFDRUFBQXljZ2lhQUJjQkVBSUFBRWdBQkFBQUZ5NE1NZ0JhRERZQXJnTitBQUlBRXdBNkFtQVVnL2hjQTBRRGdEeUlBTGdBQ0FCRUFBRGd5QUlDQkFMRVZBTUFCZ0JiYytnQ0FLd0FUQVFEZ0R3RUFnQkVBd0FFUmdBQ0FFZ0FBWUFRQUtvQVVBQURBaUJnUUVBUUFBMkVBQUlBRkFBQWlBZWVBQTRBOWdBK0FBc0RBQVdBQUlnQUFGQlFGRjRBU0FJQVNiRFJaZ0dtQUJJQXhBQUFVRVFCVUFzSUFBQVpvZ0xFREFHQWxnQ0VBa0FKMEF3QURBTGdmM3owQVlnQUE4QWNBRWdBNEFnUUFJUUF3QVdNQUFCZ09Ja0JHRWdEa2psRUNOb0FKZ0F2QUZBb0JCQUFBRlBnREFJQ0RRQUFBQUFEQUFnQ0FRSjZBQThBQWlJSlNBQU5oQVNBUTRRRVlBQ01BSEFCT0lpQUtFNEFCZ0J1QUFjQitBQUVCQXdEYWdDTUF3QjhBQndFQU1vQ0VnZ1BBd0FBQWdob0FNUUFBd09FQUlBZ1ZBQU1BZ0FOb1RBQ0EveHoxQUFEQUh3QUF3SUVBQUJCUkFFTUFBd0dnQUlBS0FnQmpBRUFGQlFrQk1MRUFnQUwrZ3dQQUtJQWdnQVFBb3dCQURBQkFDd0NSQWpBQU5BV2dBTUQ2NFY4akFESUFBT0FQalJNQU9BQUFBZ0FnTm1FQUFJQUZBQUFHQVBHaEVwRGppamhoQUFDQUJRQUFCZ0RTQXdDZ3dBQ2RZUUFBZ0FVQUFBUUFrUlQ0QU9SaEFBQ0FCUUFBREFBaUxuQUFJQUV3Z1ZxQUY0RHVZUUFBZ0FVQUFCQUFGNndLZ0EyQUhJQUN3QUNJRUFBNmdQRmhBQUNBQlFBQUFnREhwUEpoQUFDQUJRQUFDQUNqSndEZTh3ekFBUE5oQUFDQUJRQUFEQUQ5bVFQQUFBNEFZQU1BbUlEMFlRQUFnQVVBQUJJQWJha0J3Q3dDUWdCQVd3SWdGWUFlZ0p1QTlXRUFBSUFGQUFBa0FJTVhCUUFBSG1BQWtJR2hFVEFBRXdCd0FBQmhLZ0FTQUJDamhjbkJBUGdDY1FDQUEvWmhBQUNBQlFBQUdnQnVvYjZBSkFBQStPZnZOL2VGZXhGQXZ3QnZnQUxBQUZ6SkJ4NWlBQUNBQlFBQU5nQkJJTUFBTlFBQTRNQWRBTEFYSFFJQVlRSGdEMU1BMEFBQkFDQUFZZ0VBQ2dFQVVvSUpnQTZBRWdCUUlBb0FFUUFBb0NpQkM0QXBZZ0FBZ0FVQUFBWUF0SllCd0NBcW1tTUFBSUFGQUFBYUFOK0VTSUFCd0VDSUw0QUN3QWtRUUFBMWdGV0E5NEFhaEdPR25HTUFBSUFGQUFBT0FKRVRBQVVSQUJnQXU0d3BnTkNBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' headers: cache-control: - no-cache content-length: - - '3132' + - '3292' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:19 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -858,21 +816,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2FvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4YkU4OElYQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0xYd0FBZ0FVQUFBUVFBQUFBRkFBQUMxOEFBSUFGQUFBMEFNU3pJUUg4QVJjQUFPQUlBQ0JBQUFLcWdEQUlRQUNSQWdBT0VnSUFoUUVBb3dBUUFSQnpBQVRhZ2NFQUFBcE9nU2lBRVlBTVh3QUFnQVVBQUZvQlRZTVJBR1FBRVFDQ0VKRUJHQUFVQU9EQUd3QkVPWDBBbEFBQThBY0EvSUFhQUJRQUFIU0VBQURBQXdBVEFNQUtFQklCQUhJQXdBQUFoWE1CL0FFQTRBSUJrUUlHQUJVQTRBQ0lsRUFBQUVEck55VUFCdkE3QUlDTXNRc0NBR0VBZ0Q4MkFIRGlEd0U0QVFpQUFnU3FBQkdBQjRBQndCUUF1NElCZ0RPQUl3QUFVQTRCUVFFZ2dKbUNBWUJ5Z0FQQVlCQXBDV0FBRm9JQWdMTUVBd0NBOHdNQUVnRHdmd0VBSWdBQWhra0FJUUNBUHlFQVRnVGhBVEFBSlFBSEFJQXFVQUJJOUk0UW1RQzZRZ0NNUlFCbzRJRUNBSE01Q1FJQWZ3QVJBQTRCYllBakFlQUhDQlFBamlTQVlRRWdIREVBZUFEQkFRWUFaUUNCQUNwUUFCZ0FDQUlBTDRBR2dBUEFnRUJ3QVNBR0l3QTRBa0FBSUNYQkFZQUlFZ0FBeUFRQUlnQmdBS2dTSDRBRXdCTUlBQWdRQUFFQWR3Y0FZQURBZVFVQTlCVkFBREFDQU5NQS9BRUFjQ0FBRjRCL2gyVUR3QUFBNFBBR0RLdTBBZzFmQUFDQUJRQUFsZ0FId0dBQUFBQUFIQUFBWlZBd3g1MEFwQUFBNEE4QUFJNEFBaXVCRkFBU1pVMEFCaVFEQVBFQUNnQS9obHVETWdDQWdBUUFJZ0FpUUFBUU40TTZqK01ENXJDSDN6a0FaQUFBL0FFQWNBU0FBTm1CWVlCZWdBdUFCOEFNQkFDb0FSQUFEVUFXQUFBQUZIQ0VFd0JBSkFBQkNRREJDUUJnRVFBVUVrUUVBQXc0d0NlMjFoR1NBUDRBY0NUNmdBTEFHY0VVTUk2QUJZQU9Yd0FBZ0FVQUFLQUE2NHZSQVFCZ0ZBQUFIRzhBamU4QkFKRUFnRDlSQUN4QUY0QW1BUUNnWWtBQ0FNQUFBQVFJQUZFQ0FJZ0xoTEVBQUJnVUFEZ0FQT2JMVkFFQUlRRjZDa0lDTkFBQUJEK0FsZ1JFQUFFQUVFQ0JoQUFFQUFFT2dRaUFZZ0VZSVFZQStvQUNnQ0VBVFFCeURnQURPUUNHQWdBREFEZ0FZSU1Fc0Q2QVJSSUNBUEFIQUJNQUFIQVFBRUFBTm9EMEFRQk5NUUVBQ0FNQUdvSUVnTCtCQWNBaE1nOWZBQUNBQlFBQWhnRDJqT2FIcm9VQWdBSEFZZ0p4QXhnQU5RQWNLUkF3QUlCc096QUFzUUFBL2lNQUFEaUFBQUlBeEFNWUFBQ0h1Y0RlVHYyQUFjQlpBUzZBSDRBRHdEOEFnQU1DRUZNRUFCUUdYUVVBcm9JQmdPRU1NQUFWQUFBUEFDQ3RFaUJpL2x0eEFNQWZFZ0RnRUJBQW9RS0FRQ01BQUpDSEltQUFnUUFKQUcrQkJNQVBBQUFRSUFDQWdCQmZBQUNBQlFBQWNnRGJnRUlBMEFJRUdKcUNFZ0FBZ25jQXFJRXJnTmlBUVFDQUFSUUFCM3dCQUxMaUxnQmpBUEFIQUJ3SWdDK0JBb0FHd0FRZ05CaGdBQU1BNThmdkZUMkFBNEFqQUFENEE5Z0FBYkVCQUFNVEFBSUt3Z0ZnQUJFQUJqWVVBS0FNYkFDZ3Jmc0dZUUFBRVNRQUFQZ0RBQUE0UUJEWVh3QUFnQVVBQUFvQTBSbUFCeEVBQkE2M2d0bGZBQUNBQlFBQUJnRFNJRkNvQndEYlh3QUFnQVVBQUF3QUF4UUFZQVFFQUlBQkJ3WkQzRjhBQUlBRkFBQU1BRklDQXF4REFQYUhnb0FTZ045ZkFBQ0FCUUFBQ2dDOG8zTUdBR1FBRUlBSDRWOEFBSUFGQUFBZ0FJUUlnSDkvcFBYdktDUStnQkdBRFlBSHdBQU1DTVg5LzZNSEFBQUFvQUVBbkdBQUFJQUZBQUJzQVBLT3Q0bXpBQURBQU1BQkFLNkJBY0FBa0R5QUFZQWpnTnFCOFFDQkFDSUFRUVFDQUlTQkFJQUJ3R3dBNjRGU0FBQ0dDQUFTQUlpUkFnQXhBUUFvRVFBQWpCSUFBR0FnQkhFQkFDU0dnQUhBQ0FRUWdHU0FiWUNaZ0dFTkFDUnhBRUlBc1FZWUFCSUFnRWdFQUoxZ0FBQ0FCUUFBQWdEVGdLRmdBQUNBQlFBQVFnRG5HQURZRmJKUEJ3QkVnT0FDVDNZQjBZQVVnWmlCSklBaWdJUUJBZ0lBMEJSaUJRQ0ZnbkdBS1lBUGdDbUFBY0FKQURFQWtBSjVnUUhBSUFTNGdDMkFoSUNpWUFBQWdBVUFBQ0FBZjdBQ3dNSURJQWhrZ0E2QUFjQklBREVBQ2dBY2dBSEFDVURDQWdBTTBBR3BZQUFBZ0FVQUFBSUF4TCtxWUFBQWdBVUFBQklBVDRIc2dMRUFWQUFRb1lpVGU0T2tnUDJBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2FvirtualNetworks%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Wm1MejhZQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnajhZQUFBZ0FVQUFBUVFBQUFBRkFBQS9HQUFBSUFGQUFBTUFHRXZRSUFmZ0FDQTBRQUFVUDFnQUFDQUJRQUFVQUFSRXNjTVJBM1FpUUVDSUFBQ0FoSUl3S1VURkpFQkhBQkNBQUFxQVFCaUFBd0FKQUJVQUFEWWJRTVUzUThBVkFBQThBY0FBQmNFQUJFQURnQWdnUklBZ0JJc05KRUFBS0RkZ3dMQUxBQkFCLzVnQUFDQUJRQUFLQUFla3dYQUJDUU1BQUFBQUdzQ0FIVXJEQUFBSFBCRFZYNElBR0lBQVBnR0FCRUFIQUVSZ0ErQS8yQUFBSUFGQUFBK0FBSEFCUUQwZ1FQQUNLa1JBQXdBcjRBRWdQS2RJSUJrQUFDZ0RRQWdBRUFGTVlHaEVRREFGQUFIK0FJQUQ5NEVRT1lBQVBnREFBRGdRQUJBQU1BRUFHRUFBSUFGQUFCYUFKRURRQWhqQUFBT1FGa0JBQkVBL3cveUJBREFId0FqQURnQUFRQUFCQ0VBRmdCV2lRNkFCTUREQVVTTzJnREZNZTJETWdBQUNTSUFWWVVCd0NvQVRvQU5nQXVBQUlDWGdVK0xBY0FBWUN5QUI0QUxnQUdBRDRFaGpRRmhBQUNBQlFBQU9BREZCUU1BY0lCdEFCQy9FUU9CQVFEK1VnQUFOQVFBR0lBaEFCd0Flb1FpQUFERlJnQVJnSnFBd1FZQVFSK0xBWUFUQUFKQUFCQWdBQUpoQUFDQUJRQUFyZ0VGRFFBREFBY3hCN2FaQXdRUkFmb0JFZ0FBNEFDQ0w0QUJ3QW9BSElBQndKQUlRZ0FFRUFJQnpZTXVnRElBS1BDSUFzK0JBb0FSQThBQU1nQUhnS2dGRWdCY1o5QUFad0dBd1I4QWdBQUFBd2NRQURqQXF4SUFBSDYzQUpJQUFQd0JBRU1BQUFjUUFBQUlRZ0FBQlFRQUVRREFBQkVBRmdBVUFLQ1VBUWhodlNRQVVnQVlBQmdBS3dBQWNNRGkrUUtBQklEMVgvOUtBQURBSHdBQTBDdk1FZ0JvQUFBQ0VnQXcrUGNIRXdBQTRONEFnQ1FpQUFBd0R3QWtBRUFTVEFnSUFBd0FTb0FEZ0ZFQUNJQWpBUWhRU0VRUUFDRUF3QUF6Z0MyQUE4Q0VCS0FQSUFCUkFBR0FsNEF4Z05FQkFBWkVBQTRBbkFNd1ZPTUZrUUFBWUJFQUVRWlBnQWJBQmdBQUFBRDhBWUFUQUNBQTJJSVRBRUJRS0FVQUJVRUJRQWlJQVdCc2dJa1FCQUE0aG9hQUtvVUJLd0FoQWJBUExvQUJ3SndBVVFBRVFDRUFBQXljZ2lhQUJjQkVBSUFBRWdBQkFBQUZ5NE1NZ0JhRERZQXJnTitBQUlBRXdBNkFtQVVnL2hjQTBRRGdEeUlBTGdBQ0FCRUFBRGd5QUlDQkFMRVZBTUFCZ0JiYytnQ0FLd0FUQVFEZ0R3RUFnQkVBd0FFUmdBQ0FFZ0FBWUFRQUtvQVVBQURBaUJnUUVBUUFBMkVBQUlBRkFBQWlBZWVBQTRBOWdBK0FBc0RBQVdBQUlnQUFGQlFGRjRBU0FJQVNiRFJaZ0dtQUJJQXhBQUFVRVFCVUFzSUFBQVpvZ0xFREFHQWxnQ0VBa0FKMEF3QURBTGdmM3owQVlnQUE4QWNBRWdBNEFnUUFJUUF3QVdNQUFCZ09Ja0JHRWdEa2psRUNOb0FKZ0F2QUZBb0JCQUFBRlBnREFJQ0RRQUFBQUFEQUFnQ0FRSjZBQThBQWlJSlNBQU5oQVNBUTRRRVlBQ01BSEFCT0lpQUtFNEFCZ0J1QUFjQitBQUVCQXdEYWdDTUF3QjhBQndFQU1vQ0VnZ1BBd0FBQWdob0FNUUFBd09FQUlBZ1ZBQU1BZ0FOb1RBQ0EveHoxQUFEQUh3QUF3SUVBQUJCUkFFTUFBd0dnQUlBS0FnQmpBRUFGQlFrQk1MRUFnQUwrZ3dQQUtJQWdnQVFBb3dCQURBQkFDd0NSQWpBQU5BV2dBTUQ2NFY4akFESUFBT0FQalJNQU9BQUFBZ0FnTm1FQUFJQUZBQUFHQVBHaEVwRGppamhoQUFDQUJRQUFCZ0RTQXdDZ3dBQ2RZUUFBZ0FVQUFBUUFrUlQ0QU9SaEFBQ0FCUUFBREFBaUxuQUFJQUV3Z1ZxQUY0RHVZUUFBZ0FVQUFCQUFGNndLZ0EyQUhJQUN3QUNJRUFBNmdQRmhBQUNBQlFBQUFnREhwUEpoQUFDQUJRQUFDQUNqSndEZTh3ekFBUE5oQUFDQUJRQUFEQUQ5bVFQQUFBNEFZQU1BbUlEMFlRQUFnQVVBQUJJQWJha0J3Q3dDUWdCQVd3SWdGWUFlZ0p1QTlXRUFBSUFGQUFBa0FJTVhCUUFBSG1BQWtJR2hFVEFBRXdCd0FBQmhLZ0FTQUJDamhjbkJBUGdDY1FDQUEvWmhBQUNBQlFBQUdnQnVvYjZBSkFBQStPZnZOL2VGZXhGQXZ3QnZnQUxBQUZ6SkJ4NWlBQUNBQlFBQU5nQkJJTUFBTlFBQTRNQWRBTEFYSFFJQVlRSGdEMU1BMEFBQkFDQUFZZ0VBQ2dFQVVvSUpnQTZBRWdCUUlBb0FFUUFBb0NpQkM0QXBZZ0FBZ0FVQUFBWUF0SllCd0NBcW1tTUFBSUFGQUFBYUFOK0VTSUFCd0VDSUw0QUN3QWtRUUFBMWdGV0E5NEFhaEdPR25HTUFBSUFGQUFBT0FKRVRBQVVSQUJnQXU0d3BnTkNBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2fvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WW1BY1FYQUFCZ0FRPT0jUlQ6MyNUUkM6MzAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ1FYd0FBZ0FVQUFBUVFBQUFBRkFBQUVGOEFBSUFGQUFCd0FDSUJ3QUlFR0pxQ0VnQUFnbmNBcUlFcmdOaUFRUUNBQVJRQUIzd0JBTExpTGdCakFQQUhBQndJZ0MrQkFvQUd3QVFnTkJoZ0FBTUE1OGZ2RlQyQUE0QWpBQUQ0QTlnQUFiRUJBQU1UQUFJS3dnRmdBQkVBQmpZVUFLQU1iQUNncmZzR1lRQUFFU1FBQVBnREFBQTRRQkRZWHdBQWdBVUFBQW9BMFJtQUJ4RUFCQTYzZ3RsZkFBQ0FCUUFBQmdEU0lGQ29Cd0RiWHdBQWdBVUFBQXdBQXhRQVlBUUVBSUFCQndaRDNGOEFBSUFGQUFBTUFGSUNBcXhEQVBhSGdvQVNnTjlmQUFDQUJRQUFDZ0M4bzNNR0FHUUFFSUFINFY4QUFJQUZBQUFnQUlRSWdIOS9wUFh2S0NRK2dCR0FEWUFId0FBTUNNWDkvNk1IQUFBQW9BRUFuR0FBQUlBRkFBQnNBUEtPdDRtekFBREFBTUFCQUs2QkFjQUFrRHlBQVlBamdOcUI4UUNCQUNJQVFRUUNBSVNCQUlBQndHd0E2NEZTQUFDR0NBQVNBSWlSQWdBeEFRQW9FUUFBakJJQUFHQWdCSEVCQUNTR2dBSEFDQVFRZ0dTQWJZQ1pnR0VOQUNSeEFFSUFzUVlZQUJJQWdFZ0VBSjFnQUFDQUJRQUFBZ0RUZ0tGZ0FBQ0FCUUFBUWdEbkdBRFlGYkpQQndCRWdPQUNUM1lCMFlBVWdaaUJKSUFpZ0lRQkFnSUEwQlJpQlFDRmduR0FLWUFQZ0NtQUFjQUpBREVBa0FKNWdRSEFJQVM0Z0MyQWhJQ2lZQUFBZ0FVQUFDQUFmN0FDd01JRElBaGtnQTZBQWNCSUFERUFDZ0FjZ0FIQUNVRENBZ0FNMEFHcFlBQUFnQVVBQUFJQXhMK3FZQUFBZ0FVQUFCSUFUNEhzZ0xFQVZBQVFvWWlUZTRPa2dQMkFCQkFBQUFBVUFBQUNBQVNoXCIsXCJyYW5nZVwiOntcIm1pblwiOlwiMDVDMUVGQ0JFMTI3NjRcIixcIm1heFwiOlwiRkZcIn19XSJ9"}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2fvirtualNetworks%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WTR6a0FZQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0RZUUFBZ0FVQUFBUVFBQUFBRkFBQUEyRUFBSUFGQUFDeUFESU9BSU5BQUJNQUFNQUNBSUJBbm9BRHdBQ0lnbElBQTJFQklCRGhBUmdBSXdBY0FFNGlJQW9UZ0FHQUc0QUJ3SDRBQVFFREFOcUFJd0RBSHdBSEFRQXlnSVNDQThEQUFBQ0NHZ0F4QUFEQTRRQWdDQlVBQXdDQUEyaE1BSUQvSFBVQUFNQWZBQURBZ1FBQUVGRUFRd0FEQWFBQWdBb0NBR01BUUFVRkNRRXdzUUNBQXY2REE4QW9nQ0NBQkFDakFFQU1BRUFMQUpFQ01BQTBCYUFBd1ByaFh5TUFNZ0FBNEErTkV3QTRBQUFDQUNBMllRQUFnQVVBQUFZQThhRVNrT09LT0dFQUFJQUZBQUFHQU5JREFLREFBSjFoQUFDQUJRQUFCQUNSRlBnQTVHRUFBSUFGQUFBTUFDSXVjQUFnQVRDQldvQVhnTzVoQUFDQUJRQUFFQUFYckFxQURZQWNnQUxBQUlnUUFEcUE4V0VBQUlBRkFBQUNBTWVrOG1FQUFJQUZBQUFJQUtNbkFON3pETUFBODJFQUFJQUZBQUFNQVAyWkE4QUFEZ0JnQXdDWWdQUmhBQUNBQlFBQUVnQnRxUUhBTEFKQ0FFQmJBaUFWZ0I2QW00RDFZUUFBZ0FVQUFDUUFneGNGQUFBZVlBQ1FnYUVSTUFBVEFIQUFBR0VxQUJJQUVLT0Z5Y0VBK0FKeEFJQUQ5bUVBQUlBRkFBQWFBRzZodm9Ba0FBRDQ1KzgzOTRWN0VVQy9BRytBQXNBQVhNa0hIbUlBQUlBRkFBQTJBRUVnd0FBMUFBRGd3QjBBc0JjZEFnQmhBZUFQVXdEUUFBRUFJQUJpQVFBS0FRQlNnZ21BRG9BU0FGQWdDZ0FSQUFDZ0tJRUxnQ2xpQUFDQUJRQUFCZ0MwbGdIQUlDcWFZd0FBZ0FVQUFCb0EzNFJJZ0FIQVFJZ3ZnQUxBQ1JCQUFEV0FWWUQzZ0JxRVk0YWNZd0FBZ0FVQUFBNEFrUk1BQlJFQUdBQzdqQ21BMElBRUVBQUFBQlFBQUFJQUJLRT1cIixcInJhbmdlXCI6e1wibWluXCI6XCIwNUMxRUZDQkUxMjc2NFwiLFwibWF4XCI6XCJGRlwifX1dIn0%3d"}' headers: cache-control: - no-cache content-length: - - '1536' + - '1598' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:19 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -900,9 +858,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2FvirtualNetworks%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WW1BY1FYQUFCZ0FRPT0jUlQ6MyNUUkM6MzAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ1FYd0FBZ0FVQUFBUVFBQUFBRkFBQUVGOEFBSUFGQUFCd0FDSUJ3QUlFR0pxQ0VnQUFnbmNBcUlFcmdOaUFRUUNBQVJRQUIzd0JBTExpTGdCakFQQUhBQndJZ0MrQkFvQUd3QVFnTkJoZ0FBTUE1OGZ2RlQyQUE0QWpBQUQ0QTlnQUFiRUJBQU1UQUFJS3dnRmdBQkVBQmpZVUFLQU1iQUNncmZzR1lRQUFFU1FBQVBnREFBQTRRQkRZWHdBQWdBVUFBQW9BMFJtQUJ4RUFCQTYzZ3RsZkFBQ0FCUUFBQmdEU0lGQ29Cd0RiWHdBQWdBVUFBQXdBQXhRQVlBUUVBSUFCQndaRDNGOEFBSUFGQUFBTUFGSUNBcXhEQVBhSGdvQVNnTjlmQUFDQUJRQUFDZ0M4bzNNR0FHUUFFSUFINFY4QUFJQUZBQUFnQUlRSWdIOS9wUFh2S0NRK2dCR0FEWUFId0FBTUNNWDkvNk1IQUFBQW9BRUFuR0FBQUlBRkFBQnNBUEtPdDRtekFBREFBTUFCQUs2QkFjQUFrRHlBQVlBamdOcUI4UUNCQUNJQVFRUUNBSVNCQUlBQndHd0E2NEZTQUFDR0NBQVNBSWlSQWdBeEFRQW9FUUFBakJJQUFHQWdCSEVCQUNTR2dBSEFDQVFRZ0dTQWJZQ1pnR0VOQUNSeEFFSUFzUVlZQUJJQWdFZ0VBSjFnQUFDQUJRQUFBZ0RUZ0tGZ0FBQ0FCUUFBUWdEbkdBRFlGYkpQQndCRWdPQUNUM1lCMFlBVWdaaUJKSUFpZ0lRQkFnSUEwQlJpQlFDRmduR0FLWUFQZ0NtQUFjQUpBREVBa0FKNWdRSEFJQVM0Z0MyQWhJQ2lZQUFBZ0FVQUFDQUFmN0FDd01JRElBaGtnQTZBQWNCSUFERUFDZ0FjZ0FIQUNVRENBZ0FNMEFHcFlBQUFnQVVBQUFJQXhMK3FZQUFBZ0FVQUFCSUFUNEhzZ0xFQVZBQVFvWWlUZTRPa2dQMkFCQkFBQUFBVUFBQUNBQVNoXCIsXCJyYW5nZVwiOntcIm1pblwiOlwiMDVDMUVGQ0JFMTI3NjRcIixcIm1heFwiOlwiRkZcIn19XSJ9 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27cliakstest000003%27+and+resourceType+eq+%27Microsoft.Network%2FvirtualNetworks%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WTR6a0FZQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0RZUUFBZ0FVQUFBUVFBQUFBRkFBQUEyRUFBSUFGQUFDeUFESU9BSU5BQUJNQUFNQUNBSUJBbm9BRHdBQ0lnbElBQTJFQklCRGhBUmdBSXdBY0FFNGlJQW9UZ0FHQUc0QUJ3SDRBQVFFREFOcUFJd0RBSHdBSEFRQXlnSVNDQThEQUFBQ0NHZ0F4QUFEQTRRQWdDQlVBQXdDQUEyaE1BSUQvSFBVQUFNQWZBQURBZ1FBQUVGRUFRd0FEQWFBQWdBb0NBR01BUUFVRkNRRXdzUUNBQXY2REE4QW9nQ0NBQkFDakFFQU1BRUFMQUpFQ01BQTBCYUFBd1ByaFh5TUFNZ0FBNEErTkV3QTRBQUFDQUNBMllRQUFnQVVBQUFZQThhRVNrT09LT0dFQUFJQUZBQUFHQU5JREFLREFBSjFoQUFDQUJRQUFCQUNSRlBnQTVHRUFBSUFGQUFBTUFDSXVjQUFnQVRDQldvQVhnTzVoQUFDQUJRQUFFQUFYckFxQURZQWNnQUxBQUlnUUFEcUE4V0VBQUlBRkFBQUNBTWVrOG1FQUFJQUZBQUFJQUtNbkFON3pETUFBODJFQUFJQUZBQUFNQVAyWkE4QUFEZ0JnQXdDWWdQUmhBQUNBQlFBQUVnQnRxUUhBTEFKQ0FFQmJBaUFWZ0I2QW00RDFZUUFBZ0FVQUFDUUFneGNGQUFBZVlBQ1FnYUVSTUFBVEFIQUFBR0VxQUJJQUVLT0Z5Y0VBK0FKeEFJQUQ5bUVBQUlBRkFBQWFBRzZodm9Ba0FBRDQ1KzgzOTRWN0VVQy9BRytBQXNBQVhNa0hIbUlBQUlBRkFBQTJBRUVnd0FBMUFBRGd3QjBBc0JjZEFnQmhBZUFQVXdEUUFBRUFJQUJpQVFBS0FRQlNnZ21BRG9BU0FGQWdDZ0FSQUFDZ0tJRUxnQ2xpQUFDQUJRQUFCZ0MwbGdIQUlDcWFZd0FBZ0FVQUFCb0EzNFJJZ0FIQVFJZ3ZnQUxBQ1JCQUFEV0FWWUQzZ0JxRVk0YWNZd0FBZ0FVQUFBNEFrUk1BQlJFQUdBQzdqQ21BMElBRUVBQUFBQlFBQUFJQUJLRT1cIixcInJhbmdlXCI6e1wibWluXCI6XCIwNUMxRUZDQkUxMjc2NFwiLFwibWF4XCI6XCJGRlwifX1dIn0%3D response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003","name":"cliakstest000003","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{}}]}' @@ -914,7 +872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:20 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -942,63 +900,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27clitest000001%27%20and%20name%20eq%20%27appgw-ip%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Yk0wOEVYQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0hYd0FBZ0FVQUFBUVFBQUFBRkFBQUIxOEFBSUFGQUFBYUFNeVRBOENnQW9FSkdBQmtnUVdBMzQ4QWdCSUFRQ0FVQUpXTkNGOEFBSUFGQUFBV0FSRURBd0RUQUJnQUFNQkI3QklBRUNLNUhzRUErQU1XQUlBTEFCemdBUHdBQVBpckRPSUFBTUFQQWhNQUFCd0VBQUJBSVFEd0E0dUFJZ0NTRUlHQUVRQURCR29CTUFBQUlJQVRBT2dXQUVnQUFCWUFWMzJJQVJnN2dESUJBTUFmQUZRQUFNQUNJQUNBQUFFUWdLRUNRRUNEQUlFSUJnRUVES09BRG9DQkFRRUJFUUFBRWlFR1FBSVNBQ0NJRUFBQkFzQUFJUUFPQUJJQVJBTkFBaFFBWWl1QkJJQUFZQUVTQUVBRUVnQkJBQUFSSVFCVUFzSUFBT0FQQUJJQTRBRUFDRE1CSUFJQVFBRUFod0FBVUFBZ0FRQVFvZ0RBUUFBZ0p2T0VGUkFZQU9BQThBUHduMFFBNFFEQUgxTUFPQUFBQkFCQVZRQXdBQURBZ2ZRQXhHTUIwZ0FBSWtFQTRnQkNEZ1FnRVFCZ0FFU0FBSUQ4Z0FpQUNWOEFBSUFGQUFDUUFQRUlBQXdVQUE3Z05JQzE0d1FBSVFQZ0QwSUFCd0ZBQUVXQUFZRWtBSUJsR0FJQUJnQUJZb0VPZ0FXQWxnY3dBQUJ3UHdBVUFBS0Fyd01pQVFEQVZ3QkRBQURBUVFBQUFyYUFBb0E3Z0FiQUFEaGdFQUFRQ0FBQUFDSUFDb0VOZ0xFTEFNQVVBQTdiQUlBMFFHdWcwUUIvQUJJQU9CQUJBQzJCQW9BRmdERUFBQXdpQUJnSVFBQk1nQU9BMFFBQW9BcGZBQUNBQlFBQXpnQTZnZnlCNUlFSWdETUpEQUFBYUhnRkhvQUJ3UHhyY2dBQWNBOEFJZ0FQQUJBQTlBQUV3QUNEUUFBeEFFK0FZUURBQUxXQ3dRVUFHQllBZ0FNWXdTQUFBRUFRQUFJQUVJQnlBQUNSQUFnU0F3RENFQUEvaWd1QUE4QUEvZzhBd1B2eEFMQUFFZ0FBWUFJbXNRQUFBekVBTGdBUkFBQURGQUNBQXdCOUFPSWFIek9BRVFBQW9EK0FBY0F3QVZRQi9nQUF3SUVBQ0FCaEFRQy9JZ0FBbkFBQ1F3QUFSVW9FSUJnUkFJQUJJUUFBTUxJRkJnQWdBQkVBTUFGREJBZ0VhU0VDTU1FQWdCQ3pBUVlBQU9BQkFBdGZBQUNBQlFBQVpBRjVoVUlDQ1FBQXVFbUNJUUFBT2tFQVVDRUZCUXdBQUlBR3BRVkEreldoQUg4QVdZQUR3QUFZQUFBUUFsRUNBRUV5QUFDckNSZ1JBUUVCZ1FDQUFSY0FBSEQ0QVFDQVFCQUJJSnNCRUFDVEFBQUtBSUVZQUdJQUFQQUhBQklBT0FFSUFIeUJBb0FrQUFBSlFEQVFFRUlBMGdIQUFRRUFGQUFjUUZjQXdLaytBZUVBL0FFVEFPQUFBUUJBQUVhQk40QUR3R0JFQkFnSVdER0FqWUFKZ0NVREFBTUE0QUNETkVEdkQ3RUFBQU1SQU1BQkVRQUF5aEVBQmdCMWdBWEFBQW1DSUFBQUVJUGdFR0VBdndCUkFBQ09MWUNCQVBBSElnQndnQUFnR29FVEFBSWtXQVFNQUltQXdnQWdFR0tKSG9BQndBQmdMSUFOZ0NDQkJZQUNnVVVEZ0FFQWdPTUw4RzhGQUdJQUFQZ0RBRElBQUJ3Z0FCT0FMWUIxZ0pFQkJnQXhBRUFLRmdBQUJVMEFBT0RBQklnUUdRQWhBZndCRndBQTRBZ0FJRUFBQXFxQU1BaEFBSkVDQUE0U0FnQ0ZBUUNqQUJBQkVITUFCTnFCd1FBQUNrNkJLSUFSZ0F4ZkFBQ0FCUUFBV2dGTmd4RUFaQUFSQUlJUWtRRVlBQlFBNE1BYkFFUTVmUUNVQUFEd0J3RDhnQm9BRkFBQWRJUUFBTUFEQUJNQXdBb1FFZ0VBY2dEQUFBQ0Zjd0g4QVFEZ0FnR1JBZ1lBRlFEZ0FJaVVRQUFBUU9zM0pRQUc4RHNBZ0l5eEN3SUFZUUNBUHpZQWNPSVBBVGdCQ0lBQ0JLb0FFWUFIZ0FIQUZBQzdnZ0dBTTRBakFBQlFEZ0ZCQVNDQW1ZSUJnSEtBQThCZ0VDa0pZQUFXZ2dDQXN3UURBSUR6QXdBU0FQQi9BUUFpQUFDR1NRQWhBSUEvSVFCT0JPRUJNQUFsQUFjQWdDcFFBRWowamhDWkFMcENBSXhGQUdqZ2dRSUFjemtKQWdCL0FCRUFEZ0Z0Z0NNQjRBY0lGQUNPSklCaEFTQWNNUUI0QU1FQkJnQmxBSUVBS2xBQUdBQUlBZ0F2Z0FhQUE4Q0FRSEFCSUFZakFEZ0NRQUFnSmNFQmdBZ1NBQURJQkFBaUFHQUFxQklmZ0FUQUV3Z0FDQkFBQVFCM0J3QmdBTUI1QlFEMEZVQUFNQUlBMHdEOEFRQndJQUFYZ0grSFpRUEFBQURnOEFZTXE3UUNEVjhBQUlBRkFBQ1dBQWZBWUFBQUFBQWNBQUJsVURESG5RQ2tBQURnRHdBQWpnQUNLNEVVQUJKbFRRQUdKQU1BOFFBS0FEK0dXNE15QUlDQUJBQWlBQ0pBQUJBM2d6cVA0d1Btc0lmZk9RQmtBQUQ4QVFCd0JJQUEyWUZoZ0Y2QUM0QUh3QXdFQUtnQkVBQU5RQllBQUFBVWNJUVRBRUFrQUFFSkFNRUpBR0FSQUJRU1JBUUFERGpBSjdiV0VaSUEvZ0J3SlBxQUFzQVp3UlF3am9BRmdBNWZBQUNBQlFBQW9BRHJpOUVCQUdBVUFBQWNid0NON3dFQWtRQ0FQMUVBTEVBWGdDWUJBS0JpUUFJQXdBQUFCQWdBVVFJQWlBdUVzUUFBR0JRQU9BQTg1c3RVQVFBaEFYb0tRZ0kwQUFBRVA0Q1dCRVFBQVFBUVFJR0VBQVFBQVE2QkNJQmlBUmdoQmdENmdBS0FJUUJOQUhJT0FBTTVBSVlDQUFNQU9BQmdnd1N3UG9CRkVnSUE4QWNBRXdBQWNCQUFRQUEyZ1BRQkFFMHhBUUFJQXdBYWdnU0F2NEVCd0NFeUQxOEFBSUFGQUFDR0FQYU01b2V1aFFDQUFjQmlBbkVER0FBMUFCd3BFREFBZ0d3N01BQ3hBQUQrSXdBQU9JQUFBZ0RFQXhnQUFJZTV3TjVPL1lBQndGa0JMb0FmZ0FQQVB3Q0FBd0lRVXdRQUZBWmRCUUN1Z2dHQTRRd3dBQlVBQUE4QUlLMFNJR0wrVzNFQXdCOFNBT0FRRUFDaEFvQkFJd0FBa0ljaVlBQ0JBQWtBYjRFRXdBOEFBQkFnQUlDQUVGOEFBSUFGQUFCeUFOdUFRZ0RRQWdRWW1vSVNBQUNDZHdDb2dTdUEySUJCQUlBQkZBQUhmQUVBc3VJdUFHTUE4QWNBSEFpQUw0RUNnQWJBQkNBMEdHQUFBd0RueCs4VlBZQURnQ01BQVBnRDJBQUJzUUVBQXhNQUFnckNBV0FBRVFBR05oUUFvQXhzQUtDdCt3WmhBQUFSSkFBQStBTUFBRGhBRU5oZkFBQ0FCUUFBQ2dEUkdZQUhFUUFFRHJlQzJWOEFBSUFGQUFBR0FOSWdVS2dIQU50ZkFBQ0FCUUFBREFBREZBQmdCQVFBZ0FFSEJrUGNYd0FBZ0FVQUFBd0FVZ0lDckVNQTlvZUNnQktBMzE4QUFJQUZBQUFLQUx5amN3WUFaQUFRZ0FmaFh3QUFnQVVBQUNBQWhBaUFmMytrOWU4b0pENkFFWUFOZ0FmQUFBd0l4ZjMvb3djQUFBQ2dBUUNjWUFBQWdBVUFBR3dBOG82M2liTUFBTUFBd0FFQXJvRUJ3QUNRUElBQmdDT0Eyb0h4QUlFQUlnQkJCQUlBaElFQWdBSEFiQURyZ1ZJQUFJWUlBQklBaUpFQ0FERUJBQ2dSQUFDTUVnQUFZQ0FFY1FFQUpJYUFBY0FJQkJDQVpJQnRnSm1BWVEwQUpIRUFRZ0N4QmhnQUVnQ0FTQVFBbldBQUFJQUZBQUFDQU5PQW9XQUFBSUFGQUFCQ0FPY1lBTmdWc2s4SEFFU0E0QUpQZGdIUmdCU0JtSUVrZ0NLQWhBRUNBZ0RRRkdJRkFJV0NjWUFwZ0ErQUtZQUJ3QWtBTVFDUUFubUJBY0FnQkxpQUxZQ0VnS0pnQUFDQUJRQUFJQUIvc0FMQXdnTWdDR1NBRG9BQndFZ0FNUUFLQUJ5QUFjQUpRTUlDQUF6UUFhbGdBQUNBQlFBQUFnREV2NnBnQUFDQUJRQUFFZ0JQZ2V5QXNRQlVBQkNoaUpON2c2U0EvWUFFRUFBQUFCUUFBQUlBQktFPVwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '4902' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:30:20 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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Yk0wOEVYQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0hYd0FBZ0FVQUFBUVFBQUFBRkFBQUIxOEFBSUFGQUFBYUFNeVRBOENnQW9FSkdBQmtnUVdBMzQ4QWdCSUFRQ0FVQUpXTkNGOEFBSUFGQUFBV0FSRURBd0RUQUJnQUFNQkI3QklBRUNLNUhzRUErQU1XQUlBTEFCemdBUHdBQVBpckRPSUFBTUFQQWhNQUFCd0VBQUJBSVFEd0E0dUFJZ0NTRUlHQUVRQURCR29CTUFBQUlJQVRBT2dXQUVnQUFCWUFWMzJJQVJnN2dESUJBTUFmQUZRQUFNQUNJQUNBQUFFUWdLRUNRRUNEQUlFSUJnRUVES09BRG9DQkFRRUJFUUFBRWlFR1FBSVNBQ0NJRUFBQkFzQUFJUUFPQUJJQVJBTkFBaFFBWWl1QkJJQUFZQUVTQUVBRUVnQkJBQUFSSVFCVUFzSUFBT0FQQUJJQTRBRUFDRE1CSUFJQVFBRUFod0FBVUFBZ0FRQVFvZ0RBUUFBZ0p2T0VGUkFZQU9BQThBUHduMFFBNFFEQUgxTUFPQUFBQkFCQVZRQXdBQURBZ2ZRQXhHTUIwZ0FBSWtFQTRnQkNEZ1FnRVFCZ0FFU0FBSUQ4Z0FpQUNWOEFBSUFGQUFDUUFQRUlBQXdVQUE3Z05JQzE0d1FBSVFQZ0QwSUFCd0ZBQUVXQUFZRWtBSUJsR0FJQUJnQUJZb0VPZ0FXQWxnY3dBQUJ3UHdBVUFBS0Fyd01pQVFEQVZ3QkRBQURBUVFBQUFyYUFBb0E3Z0FiQUFEaGdFQUFRQ0FBQUFDSUFDb0VOZ0xFTEFNQVVBQTdiQUlBMFFHdWcwUUIvQUJJQU9CQUJBQzJCQW9BRmdERUFBQXdpQUJnSVFBQk1nQU9BMFFBQW9BcGZBQUNBQlFBQXpnQTZnZnlCNUlFSWdETUpEQUFBYUhnRkhvQUJ3UHhyY2dBQWNBOEFJZ0FQQUJBQTlBQUV3QUNEUUFBeEFFK0FZUURBQUxXQ3dRVUFHQllBZ0FNWXdTQUFBRUFRQUFJQUVJQnlBQUNSQUFnU0F3RENFQUEvaWd1QUE4QUEvZzhBd1B2eEFMQUFFZ0FBWUFJbXNRQUFBekVBTGdBUkFBQURGQUNBQXdCOUFPSWFIek9BRVFBQW9EK0FBY0F3QVZRQi9nQUF3SUVBQ0FCaEFRQy9JZ0FBbkFBQ1F3QUFSVW9FSUJnUkFJQUJJUUFBTUxJRkJnQWdBQkVBTUFGREJBZ0VhU0VDTU1FQWdCQ3pBUVlBQU9BQkFBdGZBQUNBQlFBQVpBRjVoVUlDQ1FBQXVFbUNJUUFBT2tFQVVDRUZCUXdBQUlBR3BRVkEreldoQUg4QVdZQUR3QUFZQUFBUUFsRUNBRUV5QUFDckNSZ1JBUUVCZ1FDQUFSY0FBSEQ0QVFDQVFCQUJJSnNCRUFDVEFBQUtBSUVZQUdJQUFQQUhBQklBT0FFSUFIeUJBb0FrQUFBSlFEQVFFRUlBMGdIQUFRRUFGQUFjUUZjQXdLaytBZUVBL0FFVEFPQUFBUUJBQUVhQk40QUR3R0JFQkFnSVdER0FqWUFKZ0NVREFBTUE0QUNETkVEdkQ3RUFBQU1SQU1BQkVRQUF5aEVBQmdCMWdBWEFBQW1DSUFBQUVJUGdFR0VBdndCUkFBQ09MWUNCQVBBSElnQndnQUFnR29FVEFBSWtXQVFNQUltQXdnQWdFR0tKSG9BQndBQmdMSUFOZ0NDQkJZQUNnVVVEZ0FFQWdPTUw4RzhGQUdJQUFQZ0RBRElBQUJ3Z0FCT0FMWUIxZ0pFQkJnQXhBRUFLRmdBQUJVMEFBT0RBQklnUUdRQWhBZndCRndBQTRBZ0FJRUFBQXFxQU1BaEFBSkVDQUE0U0FnQ0ZBUUNqQUJBQkVITUFCTnFCd1FBQUNrNkJLSUFSZ0F4ZkFBQ0FCUUFBV2dGTmd4RUFaQUFSQUlJUWtRRVlBQlFBNE1BYkFFUTVmUUNVQUFEd0J3RDhnQm9BRkFBQWRJUUFBTUFEQUJNQXdBb1FFZ0VBY2dEQUFBQ0Zjd0g4QVFEZ0FnR1JBZ1lBRlFEZ0FJaVVRQUFBUU9zM0pRQUc4RHNBZ0l5eEN3SUFZUUNBUHpZQWNPSVBBVGdCQ0lBQ0JLb0FFWUFIZ0FIQUZBQzdnZ0dBTTRBakFBQlFEZ0ZCQVNDQW1ZSUJnSEtBQThCZ0VDa0pZQUFXZ2dDQXN3UURBSUR6QXdBU0FQQi9BUUFpQUFDR1NRQWhBSUEvSVFCT0JPRUJNQUFsQUFjQWdDcFFBRWowamhDWkFMcENBSXhGQUdqZ2dRSUFjemtKQWdCL0FCRUFEZ0Z0Z0NNQjRBY0lGQUNPSklCaEFTQWNNUUI0QU1FQkJnQmxBSUVBS2xBQUdBQUlBZ0F2Z0FhQUE4Q0FRSEFCSUFZakFEZ0NRQUFnSmNFQmdBZ1NBQURJQkFBaUFHQUFxQklmZ0FUQUV3Z0FDQkFBQVFCM0J3QmdBTUI1QlFEMEZVQUFNQUlBMHdEOEFRQndJQUFYZ0grSFpRUEFBQURnOEFZTXE3UUNEVjhBQUlBRkFBQ1dBQWZBWUFBQUFBQWNBQUJsVURESG5RQ2tBQURnRHdBQWpnQUNLNEVVQUJKbFRRQUdKQU1BOFFBS0FEK0dXNE15QUlDQUJBQWlBQ0pBQUJBM2d6cVA0d1Btc0lmZk9RQmtBQUQ4QVFCd0JJQUEyWUZoZ0Y2QUM0QUh3QXdFQUtnQkVBQU5RQllBQUFBVWNJUVRBRUFrQUFFSkFNRUpBR0FSQUJRU1JBUUFERGpBSjdiV0VaSUEvZ0J3SlBxQUFzQVp3UlF3am9BRmdBNWZBQUNBQlFBQW9BRHJpOUVCQUdBVUFBQWNid0NON3dFQWtRQ0FQMUVBTEVBWGdDWUJBS0JpUUFJQXdBQUFCQWdBVVFJQWlBdUVzUUFBR0JRQU9BQTg1c3RVQVFBaEFYb0tRZ0kwQUFBRVA0Q1dCRVFBQVFBUVFJR0VBQVFBQVE2QkNJQmlBUmdoQmdENmdBS0FJUUJOQUhJT0FBTTVBSVlDQUFNQU9BQmdnd1N3UG9CRkVnSUE4QWNBRXdBQWNCQUFRQUEyZ1BRQkFFMHhBUUFJQXdBYWdnU0F2NEVCd0NFeUQxOEFBSUFGQUFDR0FQYU01b2V1aFFDQUFjQmlBbkVER0FBMUFCd3BFREFBZ0d3N01BQ3hBQUQrSXdBQU9JQUFBZ0RFQXhnQUFJZTV3TjVPL1lBQndGa0JMb0FmZ0FQQVB3Q0FBd0lRVXdRQUZBWmRCUUN1Z2dHQTRRd3dBQlVBQUE4QUlLMFNJR0wrVzNFQXdCOFNBT0FRRUFDaEFvQkFJd0FBa0ljaVlBQ0JBQWtBYjRFRXdBOEFBQkFnQUlDQUVGOEFBSUFGQUFCeUFOdUFRZ0RRQWdRWW1vSVNBQUNDZHdDb2dTdUEySUJCQUlBQkZBQUhmQUVBc3VJdUFHTUE4QWNBSEFpQUw0RUNnQWJBQkNBMEdHQUFBd0RueCs4VlBZQURnQ01BQVBnRDJBQUJzUUVBQXhNQUFnckNBV0FBRVFBR05oUUFvQXhzQUtDdCt3WmhBQUFSSkFBQStBTUFBRGhBRU5oZkFBQ0FCUUFBQ2dEUkdZQUhFUUFFRHJlQzJWOEFBSUFGQUFBR0FOSWdVS2dIQU50ZkFBQ0FCUUFBREFBREZBQmdCQVFBZ0FFSEJrUGNYd0FBZ0FVQUFBd0FVZ0lDckVNQTlvZUNnQktBMzE4QUFJQUZBQUFLQUx5amN3WUFaQUFRZ0FmaFh3QUFnQVVBQUNBQWhBaUFmMytrOWU4b0pENkFFWUFOZ0FmQUFBd0l4ZjMvb3djQUFBQ2dBUUNjWUFBQWdBVUFBR3dBOG82M2liTUFBTUFBd0FFQXJvRUJ3QUNRUElBQmdDT0Eyb0h4QUlFQUlnQkJCQUlBaElFQWdBSEFiQURyZ1ZJQUFJWUlBQklBaUpFQ0FERUJBQ2dSQUFDTUVnQUFZQ0FFY1FFQUpJYUFBY0FJQkJDQVpJQnRnSm1BWVEwQUpIRUFRZ0N4QmhnQUVnQ0FTQVFBbldBQUFJQUZBQUFDQU5PQW9XQUFBSUFGQUFCQ0FPY1lBTmdWc2s4SEFFU0E0QUpQZGdIUmdCU0JtSUVrZ0NLQWhBRUNBZ0RRRkdJRkFJV0NjWUFwZ0ErQUtZQUJ3QWtBTVFDUUFubUJBY0FnQkxpQUxZQ0VnS0pnQUFDQUJRQUFJQUIvc0FMQXdnTWdDR1NBRG9BQndFZ0FNUUFLQUJ5QUFjQUpRTUlDQUF6UUFhbGdBQUNBQlFBQUFnREV2NnBnQUFDQUJRQUFFZ0JQZ2V5QXNRQlVBQkNoaUpON2c2U0EvWUFFRUFBQUFCUUFBQUlBQktFPVwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D - response: - body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4YkU4OElYQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0xYd0FBZ0FVQUFBUVFBQUFBRkFBQUMxOEFBSUFGQUFBMEFNU3pJUUg4QVJjQUFPQUlBQ0JBQUFLcWdEQUlRQUNSQWdBT0VnSUFoUUVBb3dBUUFSQnpBQVRhZ2NFQUFBcE9nU2lBRVlBTVh3QUFnQVVBQUZvQlRZTVJBR1FBRVFDQ0VKRUJHQUFVQU9EQUd3QkVPWDBBbEFBQThBY0EvSUFhQUJRQUFIU0VBQURBQXdBVEFNQUtFQklCQUhJQXdBQUFoWE1CL0FFQTRBSUJrUUlHQUJVQTRBQ0lsRUFBQUVEck55VUFCdkE3QUlDTXNRc0NBR0VBZ0Q4MkFIRGlEd0U0QVFpQUFnU3FBQkdBQjRBQndCUUF1NElCZ0RPQUl3QUFVQTRCUVFFZ2dKbUNBWUJ5Z0FQQVlCQXBDV0FBRm9JQWdMTUVBd0NBOHdNQUVnRHdmd0VBSWdBQWhra0FJUUNBUHlFQVRnVGhBVEFBSlFBSEFJQXFVQUJJOUk0UW1RQzZRZ0NNUlFCbzRJRUNBSE01Q1FJQWZ3QVJBQTRCYllBakFlQUhDQlFBamlTQVlRRWdIREVBZUFEQkFRWUFaUUNCQUNwUUFCZ0FDQUlBTDRBR2dBUEFnRUJ3QVNBR0l3QTRBa0FBSUNYQkFZQUlFZ0FBeUFRQUlnQmdBS2dTSDRBRXdCTUlBQWdRQUFFQWR3Y0FZQURBZVFVQTlCVkFBREFDQU5NQS9BRUFjQ0FBRjRCL2gyVUR3QUFBNFBBR0RLdTBBZzFmQUFDQUJRQUFsZ0FId0dBQUFBQUFIQUFBWlZBd3g1MEFwQUFBNEE4QUFJNEFBaXVCRkFBU1pVMEFCaVFEQVBFQUNnQS9obHVETWdDQWdBUUFJZ0FpUUFBUU40TTZqK01ENXJDSDN6a0FaQUFBL0FFQWNBU0FBTm1CWVlCZWdBdUFCOEFNQkFDb0FSQUFEVUFXQUFBQUZIQ0VFd0JBSkFBQkNRREJDUUJnRVFBVUVrUUVBQXc0d0NlMjFoR1NBUDRBY0NUNmdBTEFHY0VVTUk2QUJZQU9Yd0FBZ0FVQUFLQUE2NHZSQVFCZ0ZBQUFIRzhBamU4QkFKRUFnRDlSQUN4QUY0QW1BUUNnWWtBQ0FNQUFBQVFJQUZFQ0FJZ0xoTEVBQUJnVUFEZ0FQT2JMVkFFQUlRRjZDa0lDTkFBQUJEK0FsZ1JFQUFFQUVFQ0JoQUFFQUFFT2dRaUFZZ0VZSVFZQStvQUNnQ0VBVFFCeURnQURPUUNHQWdBREFEZ0FZSU1Fc0Q2QVJSSUNBUEFIQUJNQUFIQVFBRUFBTm9EMEFRQk5NUUVBQ0FNQUdvSUVnTCtCQWNBaE1nOWZBQUNBQlFBQWhnRDJqT2FIcm9VQWdBSEFZZ0p4QXhnQU5RQWNLUkF3QUlCc096QUFzUUFBL2lNQUFEaUFBQUlBeEFNWUFBQ0h1Y0RlVHYyQUFjQlpBUzZBSDRBRHdEOEFnQU1DRUZNRUFCUUdYUVVBcm9JQmdPRU1NQUFWQUFBUEFDQ3RFaUJpL2x0eEFNQWZFZ0RnRUJBQW9RS0FRQ01BQUpDSEltQUFnUUFKQUcrQkJNQVBBQUFRSUFDQWdCQmZBQUNBQlFBQWNnRGJnRUlBMEFJRUdKcUNFZ0FBZ25jQXFJRXJnTmlBUVFDQUFSUUFCM3dCQUxMaUxnQmpBUEFIQUJ3SWdDK0JBb0FHd0FRZ05CaGdBQU1BNThmdkZUMkFBNEFqQUFENEE5Z0FBYkVCQUFNVEFBSUt3Z0ZnQUJFQUJqWVVBS0FNYkFDZ3Jmc0dZUUFBRVNRQUFQZ0RBQUE0UUJEWVh3QUFnQVVBQUFvQTBSbUFCeEVBQkE2M2d0bGZBQUNBQlFBQUJnRFNJRkNvQndEYlh3QUFnQVVBQUF3QUF4UUFZQVFFQUlBQkJ3WkQzRjhBQUlBRkFBQU1BRklDQXF4REFQYUhnb0FTZ045ZkFBQ0FCUUFBQ2dDOG8zTUdBR1FBRUlBSDRWOEFBSUFGQUFBZ0FJUUlnSDkvcFBYdktDUStnQkdBRFlBSHdBQU1DTVg5LzZNSEFBQUFvQUVBbkdBQUFJQUZBQUJzQVBLT3Q0bXpBQURBQU1BQkFLNkJBY0FBa0R5QUFZQWpnTnFCOFFDQkFDSUFRUVFDQUlTQkFJQUJ3R3dBNjRGU0FBQ0dDQUFTQUlpUkFnQXhBUUFvRVFBQWpCSUFBR0FnQkhFQkFDU0dnQUhBQ0FRUWdHU0FiWUNaZ0dFTkFDUnhBRUlBc1FZWUFCSUFnRWdFQUoxZ0FBQ0FCUUFBQWdEVGdLRmdBQUNBQlFBQVFnRG5HQURZRmJKUEJ3QkVnT0FDVDNZQjBZQVVnWmlCSklBaWdJUUJBZ0lBMEJSaUJRQ0ZnbkdBS1lBUGdDbUFBY0FKQURFQWtBSjVnUUhBSUFTNGdDMkFoSUNpWUFBQWdBVUFBQ0FBZjdBQ3dNSURJQWhrZ0E2QUFjQklBREVBQ2dBY2dBSEFDVURDQWdBTTBBR3BZQUFBZ0FVQUFBSUF4TCtxWUFBQWdBVUFBQklBVDRIc2dMRUFWQUFRb1lpVGU0T2tnUDJBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Wm1MejhZQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnajhZQUFBZ0FVQUFBUVFBQUFBRkFBQS9HQUFBSUFGQUFBTUFHRXZRSUFmZ0FDQTBRQUFVUDFnQUFDQUJRQUFVQUFSRXNjTVJBM1FpUUVDSUFBQ0FoSUl3S1VURkpFQkhBQkNBQUFxQVFCaUFBd0FKQUJVQUFEWWJRTVUzUThBVkFBQThBY0FBQmNFQUJFQURnQWdnUklBZ0JJc05KRUFBS0RkZ3dMQUxBQkFCLzVnQUFDQUJRQUFLQUFla3dYQUJDUU1BQUFBQUdzQ0FIVXJEQUFBSFBCRFZYNElBR0lBQVBnR0FCRUFIQUVSZ0ErQS8yQUFBSUFGQUFBK0FBSEFCUUQwZ1FQQUNLa1JBQXdBcjRBRWdQS2RJSUJrQUFDZ0RRQWdBRUFGTVlHaEVRREFGQUFIK0FJQUQ5NEVRT1lBQVBnREFBRGdRQUJBQU1BRUFHRUFBSUFGQUFCYUFKRURRQWhqQUFBT1FGa0JBQkVBL3cveUJBREFId0FqQURnQUFRQUFCQ0VBRmdCV2lRNkFCTUREQVVTTzJnREZNZTJETWdBQUNTSUFWWVVCd0NvQVRvQU5nQXVBQUlDWGdVK0xBY0FBWUN5QUI0QUxnQUdBRDRFaGpRRmhBQUNBQlFBQU9BREZCUU1BY0lCdEFCQy9FUU9CQVFEK1VnQUFOQVFBR0lBaEFCd0Flb1FpQUFERlJnQVJnSnFBd1FZQVFSK0xBWUFUQUFKQUFCQWdBQUpoQUFDQUJRQUFyZ0VGRFFBREFBY3hCN2FaQXdRUkFmb0JFZ0FBNEFDQ0w0QUJ3QW9BSElBQndKQUlRZ0FFRUFJQnpZTXVnRElBS1BDSUFzK0JBb0FSQThBQU1nQUhnS2dGRWdCY1o5QUFad0dBd1I4QWdBQUFBd2NRQURqQXF4SUFBSDYzQUpJQUFQd0JBRU1BQUFjUUFBQUlRZ0FBQlFRQUVRREFBQkVBRmdBVUFLQ1VBUWhodlNRQVVnQVlBQmdBS3dBQWNNRGkrUUtBQklEMVgvOUtBQURBSHdBQTBDdk1FZ0JvQUFBQ0VnQXcrUGNIRXdBQTRONEFnQ1FpQUFBd0R3QWtBRUFTVEFnSUFBd0FTb0FEZ0ZFQUNJQWpBUWhRU0VRUUFDRUF3QUF6Z0MyQUE4Q0VCS0FQSUFCUkFBR0FsNEF4Z05FQkFBWkVBQTRBbkFNd1ZPTUZrUUFBWUJFQUVRWlBnQWJBQmdBQUFBRDhBWUFUQUNBQTJJSVRBRUJRS0FVQUJVRUJRQWlJQVdCc2dJa1FCQUE0aG9hQUtvVUJLd0FoQWJBUExvQUJ3SndBVVFBRVFDRUFBQXljZ2lhQUJjQkVBSUFBRWdBQkFBQUZ5NE1NZ0JhRERZQXJnTitBQUlBRXdBNkFtQVVnL2hjQTBRRGdEeUlBTGdBQ0FCRUFBRGd5QUlDQkFMRVZBTUFCZ0JiYytnQ0FLd0FUQVFEZ0R3RUFnQkVBd0FFUmdBQ0FFZ0FBWUFRQUtvQVVBQURBaUJnUUVBUUFBMkVBQUlBRkFBQWlBZWVBQTRBOWdBK0FBc0RBQVdBQUlnQUFGQlFGRjRBU0FJQVNiRFJaZ0dtQUJJQXhBQUFVRVFCVUFzSUFBQVpvZ0xFREFHQWxnQ0VBa0FKMEF3QURBTGdmM3owQVlnQUE4QWNBRWdBNEFnUUFJUUF3QVdNQUFCZ09Ja0JHRWdEa2psRUNOb0FKZ0F2QUZBb0JCQUFBRlBnREFJQ0RRQUFBQUFEQUFnQ0FRSjZBQThBQWlJSlNBQU5oQVNBUTRRRVlBQ01BSEFCT0lpQUtFNEFCZ0J1QUFjQitBQUVCQXdEYWdDTUF3QjhBQndFQU1vQ0VnZ1BBd0FBQWdob0FNUUFBd09FQUlBZ1ZBQU1BZ0FOb1RBQ0EveHoxQUFEQUh3QUF3SUVBQUJCUkFFTUFBd0dnQUlBS0FnQmpBRUFGQlFrQk1MRUFnQUwrZ3dQQUtJQWdnQVFBb3dCQURBQkFDd0NSQWpBQU5BV2dBTUQ2NFY4akFESUFBT0FQalJNQU9BQUFBZ0FnTm1FQUFJQUZBQUFHQVBHaEVwRGppamhoQUFDQUJRQUFCZ0RTQXdDZ3dBQ2RZUUFBZ0FVQUFBUUFrUlQ0QU9SaEFBQ0FCUUFBREFBaUxuQUFJQUV3Z1ZxQUY0RHVZUUFBZ0FVQUFCQUFGNndLZ0EyQUhJQUN3QUNJRUFBNmdQRmhBQUNBQlFBQUFnREhwUEpoQUFDQUJRQUFDQUNqSndEZTh3ekFBUE5oQUFDQUJRQUFEQUQ5bVFQQUFBNEFZQU1BbUlEMFlRQUFnQVVBQUJJQWJha0J3Q3dDUWdCQVd3SWdGWUFlZ0p1QTlXRUFBSUFGQUFBa0FJTVhCUUFBSG1BQWtJR2hFVEFBRXdCd0FBQmhLZ0FTQUJDamhjbkJBUGdDY1FDQUEvWmhBQUNBQlFBQUdnQnVvYjZBSkFBQStPZnZOL2VGZXhGQXZ3QnZnQUxBQUZ6SkJ4NWlBQUNBQlFBQU5nQkJJTUFBTlFBQTRNQWRBTEFYSFFJQVlRSGdEMU1BMEFBQkFDQUFZZ0VBQ2dFQVVvSUpnQTZBRWdCUUlBb0FFUUFBb0NpQkM0QXBZZ0FBZ0FVQUFBWUF0SllCd0NBcW1tTUFBSUFGQUFBYUFOK0VTSUFCd0VDSUw0QUN3QWtRUUFBMWdGV0E5NEFhaEdPR25HTUFBSUFGQUFBT0FKRVRBQVVSQUJnQXU0d3BnTkNBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3d%3d"}' headers: cache-control: - no-cache content-length: - - '3126' + - '3286' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:20 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -1026,21 +942,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4YkU4OElYQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0xYd0FBZ0FVQUFBUVFBQUFBRkFBQUMxOEFBSUFGQUFBMEFNU3pJUUg4QVJjQUFPQUlBQ0JBQUFLcWdEQUlRQUNSQWdBT0VnSUFoUUVBb3dBUUFSQnpBQVRhZ2NFQUFBcE9nU2lBRVlBTVh3QUFnQVVBQUZvQlRZTVJBR1FBRVFDQ0VKRUJHQUFVQU9EQUd3QkVPWDBBbEFBQThBY0EvSUFhQUJRQUFIU0VBQURBQXdBVEFNQUtFQklCQUhJQXdBQUFoWE1CL0FFQTRBSUJrUUlHQUJVQTRBQ0lsRUFBQUVEck55VUFCdkE3QUlDTXNRc0NBR0VBZ0Q4MkFIRGlEd0U0QVFpQUFnU3FBQkdBQjRBQndCUUF1NElCZ0RPQUl3QUFVQTRCUVFFZ2dKbUNBWUJ5Z0FQQVlCQXBDV0FBRm9JQWdMTUVBd0NBOHdNQUVnRHdmd0VBSWdBQWhra0FJUUNBUHlFQVRnVGhBVEFBSlFBSEFJQXFVQUJJOUk0UW1RQzZRZ0NNUlFCbzRJRUNBSE01Q1FJQWZ3QVJBQTRCYllBakFlQUhDQlFBamlTQVlRRWdIREVBZUFEQkFRWUFaUUNCQUNwUUFCZ0FDQUlBTDRBR2dBUEFnRUJ3QVNBR0l3QTRBa0FBSUNYQkFZQUlFZ0FBeUFRQUlnQmdBS2dTSDRBRXdCTUlBQWdRQUFFQWR3Y0FZQURBZVFVQTlCVkFBREFDQU5NQS9BRUFjQ0FBRjRCL2gyVUR3QUFBNFBBR0RLdTBBZzFmQUFDQUJRQUFsZ0FId0dBQUFBQUFIQUFBWlZBd3g1MEFwQUFBNEE4QUFJNEFBaXVCRkFBU1pVMEFCaVFEQVBFQUNnQS9obHVETWdDQWdBUUFJZ0FpUUFBUU40TTZqK01ENXJDSDN6a0FaQUFBL0FFQWNBU0FBTm1CWVlCZWdBdUFCOEFNQkFDb0FSQUFEVUFXQUFBQUZIQ0VFd0JBSkFBQkNRREJDUUJnRVFBVUVrUUVBQXc0d0NlMjFoR1NBUDRBY0NUNmdBTEFHY0VVTUk2QUJZQU9Yd0FBZ0FVQUFLQUE2NHZSQVFCZ0ZBQUFIRzhBamU4QkFKRUFnRDlSQUN4QUY0QW1BUUNnWWtBQ0FNQUFBQVFJQUZFQ0FJZ0xoTEVBQUJnVUFEZ0FQT2JMVkFFQUlRRjZDa0lDTkFBQUJEK0FsZ1JFQUFFQUVFQ0JoQUFFQUFFT2dRaUFZZ0VZSVFZQStvQUNnQ0VBVFFCeURnQURPUUNHQWdBREFEZ0FZSU1Fc0Q2QVJSSUNBUEFIQUJNQUFIQVFBRUFBTm9EMEFRQk5NUUVBQ0FNQUdvSUVnTCtCQWNBaE1nOWZBQUNBQlFBQWhnRDJqT2FIcm9VQWdBSEFZZ0p4QXhnQU5RQWNLUkF3QUlCc096QUFzUUFBL2lNQUFEaUFBQUlBeEFNWUFBQ0h1Y0RlVHYyQUFjQlpBUzZBSDRBRHdEOEFnQU1DRUZNRUFCUUdYUVVBcm9JQmdPRU1NQUFWQUFBUEFDQ3RFaUJpL2x0eEFNQWZFZ0RnRUJBQW9RS0FRQ01BQUpDSEltQUFnUUFKQUcrQkJNQVBBQUFRSUFDQWdCQmZBQUNBQlFBQWNnRGJnRUlBMEFJRUdKcUNFZ0FBZ25jQXFJRXJnTmlBUVFDQUFSUUFCM3dCQUxMaUxnQmpBUEFIQUJ3SWdDK0JBb0FHd0FRZ05CaGdBQU1BNThmdkZUMkFBNEFqQUFENEE5Z0FBYkVCQUFNVEFBSUt3Z0ZnQUJFQUJqWVVBS0FNYkFDZ3Jmc0dZUUFBRVNRQUFQZ0RBQUE0UUJEWVh3QUFnQVVBQUFvQTBSbUFCeEVBQkE2M2d0bGZBQUNBQlFBQUJnRFNJRkNvQndEYlh3QUFnQVVBQUF3QUF4UUFZQVFFQUlBQkJ3WkQzRjhBQUlBRkFBQU1BRklDQXF4REFQYUhnb0FTZ045ZkFBQ0FCUUFBQ2dDOG8zTUdBR1FBRUlBSDRWOEFBSUFGQUFBZ0FJUUlnSDkvcFBYdktDUStnQkdBRFlBSHdBQU1DTVg5LzZNSEFBQUFvQUVBbkdBQUFJQUZBQUJzQVBLT3Q0bXpBQURBQU1BQkFLNkJBY0FBa0R5QUFZQWpnTnFCOFFDQkFDSUFRUVFDQUlTQkFJQUJ3R3dBNjRGU0FBQ0dDQUFTQUlpUkFnQXhBUUFvRVFBQWpCSUFBR0FnQkhFQkFDU0dnQUhBQ0FRUWdHU0FiWUNaZ0dFTkFDUnhBRUlBc1FZWUFCSUFnRWdFQUoxZ0FBQ0FCUUFBQWdEVGdLRmdBQUNBQlFBQVFnRG5HQURZRmJKUEJ3QkVnT0FDVDNZQjBZQVVnWmlCSklBaWdJUUJBZ0lBMEJSaUJRQ0ZnbkdBS1lBUGdDbUFBY0FKQURFQWtBSjVnUUhBSUFTNGdDMkFoSUNpWUFBQWdBVUFBQ0FBZjdBQ3dNSURJQWhrZ0E2QUFjQklBREVBQ2dBY2dBSEFDVURDQWdBTTBBR3BZQUFBZ0FVQUFBSUF4TCtxWUFBQWdBVUFBQklBVDRIc2dMRUFWQUFRb1lpVGU0T2tnUDJBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4Wm1MejhZQUFCZ0FRPT0jUlQ6MSNUUkM6MTAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnajhZQUFBZ0FVQUFBUVFBQUFBRkFBQS9HQUFBSUFGQUFBTUFHRXZRSUFmZ0FDQTBRQUFVUDFnQUFDQUJRQUFVQUFSRXNjTVJBM1FpUUVDSUFBQ0FoSUl3S1VURkpFQkhBQkNBQUFxQVFCaUFBd0FKQUJVQUFEWWJRTVUzUThBVkFBQThBY0FBQmNFQUJFQURnQWdnUklBZ0JJc05KRUFBS0RkZ3dMQUxBQkFCLzVnQUFDQUJRQUFLQUFla3dYQUJDUU1BQUFBQUdzQ0FIVXJEQUFBSFBCRFZYNElBR0lBQVBnR0FCRUFIQUVSZ0ErQS8yQUFBSUFGQUFBK0FBSEFCUUQwZ1FQQUNLa1JBQXdBcjRBRWdQS2RJSUJrQUFDZ0RRQWdBRUFGTVlHaEVRREFGQUFIK0FJQUQ5NEVRT1lBQVBnREFBRGdRQUJBQU1BRUFHRUFBSUFGQUFCYUFKRURRQWhqQUFBT1FGa0JBQkVBL3cveUJBREFId0FqQURnQUFRQUFCQ0VBRmdCV2lRNkFCTUREQVVTTzJnREZNZTJETWdBQUNTSUFWWVVCd0NvQVRvQU5nQXVBQUlDWGdVK0xBY0FBWUN5QUI0QUxnQUdBRDRFaGpRRmhBQUNBQlFBQU9BREZCUU1BY0lCdEFCQy9FUU9CQVFEK1VnQUFOQVFBR0lBaEFCd0Flb1FpQUFERlJnQVJnSnFBd1FZQVFSK0xBWUFUQUFKQUFCQWdBQUpoQUFDQUJRQUFyZ0VGRFFBREFBY3hCN2FaQXdRUkFmb0JFZ0FBNEFDQ0w0QUJ3QW9BSElBQndKQUlRZ0FFRUFJQnpZTXVnRElBS1BDSUFzK0JBb0FSQThBQU1nQUhnS2dGRWdCY1o5QUFad0dBd1I4QWdBQUFBd2NRQURqQXF4SUFBSDYzQUpJQUFQd0JBRU1BQUFjUUFBQUlRZ0FBQlFRQUVRREFBQkVBRmdBVUFLQ1VBUWhodlNRQVVnQVlBQmdBS3dBQWNNRGkrUUtBQklEMVgvOUtBQURBSHdBQTBDdk1FZ0JvQUFBQ0VnQXcrUGNIRXdBQTRONEFnQ1FpQUFBd0R3QWtBRUFTVEFnSUFBd0FTb0FEZ0ZFQUNJQWpBUWhRU0VRUUFDRUF3QUF6Z0MyQUE4Q0VCS0FQSUFCUkFBR0FsNEF4Z05FQkFBWkVBQTRBbkFNd1ZPTUZrUUFBWUJFQUVRWlBnQWJBQmdBQUFBRDhBWUFUQUNBQTJJSVRBRUJRS0FVQUJVRUJRQWlJQVdCc2dJa1FCQUE0aG9hQUtvVUJLd0FoQWJBUExvQUJ3SndBVVFBRVFDRUFBQXljZ2lhQUJjQkVBSUFBRWdBQkFBQUZ5NE1NZ0JhRERZQXJnTitBQUlBRXdBNkFtQVVnL2hjQTBRRGdEeUlBTGdBQ0FCRUFBRGd5QUlDQkFMRVZBTUFCZ0JiYytnQ0FLd0FUQVFEZ0R3RUFnQkVBd0FFUmdBQ0FFZ0FBWUFRQUtvQVVBQURBaUJnUUVBUUFBMkVBQUlBRkFBQWlBZWVBQTRBOWdBK0FBc0RBQVdBQUlnQUFGQlFGRjRBU0FJQVNiRFJaZ0dtQUJJQXhBQUFVRVFCVUFzSUFBQVpvZ0xFREFHQWxnQ0VBa0FKMEF3QURBTGdmM3owQVlnQUE4QWNBRWdBNEFnUUFJUUF3QVdNQUFCZ09Ja0JHRWdEa2psRUNOb0FKZ0F2QUZBb0JCQUFBRlBnREFJQ0RRQUFBQUFEQUFnQ0FRSjZBQThBQWlJSlNBQU5oQVNBUTRRRVlBQ01BSEFCT0lpQUtFNEFCZ0J1QUFjQitBQUVCQXdEYWdDTUF3QjhBQndFQU1vQ0VnZ1BBd0FBQWdob0FNUUFBd09FQUlBZ1ZBQU1BZ0FOb1RBQ0EveHoxQUFEQUh3QUF3SUVBQUJCUkFFTUFBd0dnQUlBS0FnQmpBRUFGQlFrQk1MRUFnQUwrZ3dQQUtJQWdnQVFBb3dCQURBQkFDd0NSQWpBQU5BV2dBTUQ2NFY4akFESUFBT0FQalJNQU9BQUFBZ0FnTm1FQUFJQUZBQUFHQVBHaEVwRGppamhoQUFDQUJRQUFCZ0RTQXdDZ3dBQ2RZUUFBZ0FVQUFBUUFrUlQ0QU9SaEFBQ0FCUUFBREFBaUxuQUFJQUV3Z1ZxQUY0RHVZUUFBZ0FVQUFCQUFGNndLZ0EyQUhJQUN3QUNJRUFBNmdQRmhBQUNBQlFBQUFnREhwUEpoQUFDQUJRQUFDQUNqSndEZTh3ekFBUE5oQUFDQUJRQUFEQUQ5bVFQQUFBNEFZQU1BbUlEMFlRQUFnQVVBQUJJQWJha0J3Q3dDUWdCQVd3SWdGWUFlZ0p1QTlXRUFBSUFGQUFBa0FJTVhCUUFBSG1BQWtJR2hFVEFBRXdCd0FBQmhLZ0FTQUJDamhjbkJBUGdDY1FDQUEvWmhBQUNBQlFBQUdnQnVvYjZBSkFBQStPZnZOL2VGZXhGQXZ3QnZnQUxBQUZ6SkJ4NWlBQUNBQlFBQU5nQkJJTUFBTlFBQTRNQWRBTEFYSFFJQVlRSGdEMU1BMEFBQkFDQUFZZ0VBQ2dFQVVvSUpnQTZBRWdCUUlBb0FFUUFBb0NpQkM0QXBZZ0FBZ0FVQUFBWUF0SllCd0NBcW1tTUFBSUFGQUFBYUFOK0VTSUFCd0VDSUw0QUN3QWtRUUFBMWdGV0E5NEFhaEdPR25HTUFBSUFGQUFBT0FKRVRBQVVSQUJnQXU0d3BnTkNBQkJBQUFBQVVBQUFDQUFTaFwiLFwicmFuZ2VcIjp7XCJtaW5cIjpcIjA1QzFFRkNCRTEyNzY0XCIsXCJtYXhcIjpcIkZGXCJ9fV0ifQ%3D%3D response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WW1BY1FYQUFCZ0FRPT0jUlQ6MyNUUkM6MzAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ1FYd0FBZ0FVQUFBUVFBQUFBRkFBQUVGOEFBSUFGQUFCd0FDSUJ3QUlFR0pxQ0VnQUFnbmNBcUlFcmdOaUFRUUNBQVJRQUIzd0JBTExpTGdCakFQQUhBQndJZ0MrQkFvQUd3QVFnTkJoZ0FBTUE1OGZ2RlQyQUE0QWpBQUQ0QTlnQUFiRUJBQU1UQUFJS3dnRmdBQkVBQmpZVUFLQU1iQUNncmZzR1lRQUFFU1FBQVBnREFBQTRRQkRZWHdBQWdBVUFBQW9BMFJtQUJ4RUFCQTYzZ3RsZkFBQ0FCUUFBQmdEU0lGQ29Cd0RiWHdBQWdBVUFBQXdBQXhRQVlBUUVBSUFCQndaRDNGOEFBSUFGQUFBTUFGSUNBcXhEQVBhSGdvQVNnTjlmQUFDQUJRQUFDZ0M4bzNNR0FHUUFFSUFINFY4QUFJQUZBQUFnQUlRSWdIOS9wUFh2S0NRK2dCR0FEWUFId0FBTUNNWDkvNk1IQUFBQW9BRUFuR0FBQUlBRkFBQnNBUEtPdDRtekFBREFBTUFCQUs2QkFjQUFrRHlBQVlBamdOcUI4UUNCQUNJQVFRUUNBSVNCQUlBQndHd0E2NEZTQUFDR0NBQVNBSWlSQWdBeEFRQW9FUUFBakJJQUFHQWdCSEVCQUNTR2dBSEFDQVFRZ0dTQWJZQ1pnR0VOQUNSeEFFSUFzUVlZQUJJQWdFZ0VBSjFnQUFDQUJRQUFBZ0RUZ0tGZ0FBQ0FCUUFBUWdEbkdBRFlGYkpQQndCRWdPQUNUM1lCMFlBVWdaaUJKSUFpZ0lRQkFnSUEwQlJpQlFDRmduR0FLWUFQZ0NtQUFjQUpBREVBa0FKNWdRSEFJQVM0Z0MyQWhJQ2lZQUFBZ0FVQUFDQUFmN0FDd01JRElBaGtnQTZBQWNCSUFERUFDZ0FjZ0FIQUNVRENBZ0FNMEFHcFlBQUFnQVVBQUFJQXhMK3FZQUFBZ0FVQUFCSUFUNEhzZ0xFQVZBQVFvWWlUZTRPa2dQMkFCQkFBQUFBVUFBQUNBQVNoXCIsXCJyYW5nZVwiOntcIm1pblwiOlwiMDVDMUVGQ0JFMTI3NjRcIixcIm1heFwiOlwiRkZcIn19XSJ9"}' + string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WTR6a0FZQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0RZUUFBZ0FVQUFBUVFBQUFBRkFBQUEyRUFBSUFGQUFDeUFESU9BSU5BQUJNQUFNQUNBSUJBbm9BRHdBQ0lnbElBQTJFQklCRGhBUmdBSXdBY0FFNGlJQW9UZ0FHQUc0QUJ3SDRBQVFFREFOcUFJd0RBSHdBSEFRQXlnSVNDQThEQUFBQ0NHZ0F4QUFEQTRRQWdDQlVBQXdDQUEyaE1BSUQvSFBVQUFNQWZBQURBZ1FBQUVGRUFRd0FEQWFBQWdBb0NBR01BUUFVRkNRRXdzUUNBQXY2REE4QW9nQ0NBQkFDakFFQU1BRUFMQUpFQ01BQTBCYUFBd1ByaFh5TUFNZ0FBNEErTkV3QTRBQUFDQUNBMllRQUFnQVVBQUFZQThhRVNrT09LT0dFQUFJQUZBQUFHQU5JREFLREFBSjFoQUFDQUJRQUFCQUNSRlBnQTVHRUFBSUFGQUFBTUFDSXVjQUFnQVRDQldvQVhnTzVoQUFDQUJRQUFFQUFYckFxQURZQWNnQUxBQUlnUUFEcUE4V0VBQUlBRkFBQUNBTWVrOG1FQUFJQUZBQUFJQUtNbkFON3pETUFBODJFQUFJQUZBQUFNQVAyWkE4QUFEZ0JnQXdDWWdQUmhBQUNBQlFBQUVnQnRxUUhBTEFKQ0FFQmJBaUFWZ0I2QW00RDFZUUFBZ0FVQUFDUUFneGNGQUFBZVlBQ1FnYUVSTUFBVEFIQUFBR0VxQUJJQUVLT0Z5Y0VBK0FKeEFJQUQ5bUVBQUlBRkFBQWFBRzZodm9Ba0FBRDQ1KzgzOTRWN0VVQy9BRytBQXNBQVhNa0hIbUlBQUlBRkFBQTJBRUVnd0FBMUFBRGd3QjBBc0JjZEFnQmhBZUFQVXdEUUFBRUFJQUJpQVFBS0FRQlNnZ21BRG9BU0FGQWdDZ0FSQUFDZ0tJRUxnQ2xpQUFDQUJRQUFCZ0MwbGdIQUlDcWFZd0FBZ0FVQUFCb0EzNFJJZ0FIQVFJZ3ZnQUxBQ1JCQUFEV0FWWUQzZ0JxRVk0YWNZd0FBZ0FVQUFBNEFrUk1BQlJFQUdBQzdqQ21BMElBRUVBQUFBQlFBQUFJQUJLRT1cIixcInJhbmdlXCI6e1wibWluXCI6XCIwNUMxRUZDQkUxMjc2NFwiLFwibWF4XCI6XCJGRlwifX1dIn0%3d"}' headers: cache-control: - no-cache content-length: - - '1530' + - '1592' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:20 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -1068,9 +984,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WW1BY1FYQUFCZ0FRPT0jUlQ6MyNUUkM6MzAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ1FYd0FBZ0FVQUFBUVFBQUFBRkFBQUVGOEFBSUFGQUFCd0FDSUJ3QUlFR0pxQ0VnQUFnbmNBcUlFcmdOaUFRUUNBQVJRQUIzd0JBTExpTGdCakFQQUhBQndJZ0MrQkFvQUd3QVFnTkJoZ0FBTUE1OGZ2RlQyQUE0QWpBQUQ0QTlnQUFiRUJBQU1UQUFJS3dnRmdBQkVBQmpZVUFLQU1iQUNncmZzR1lRQUFFU1FBQVBnREFBQTRRQkRZWHdBQWdBVUFBQW9BMFJtQUJ4RUFCQTYzZ3RsZkFBQ0FCUUFBQmdEU0lGQ29Cd0RiWHdBQWdBVUFBQXdBQXhRQVlBUUVBSUFCQndaRDNGOEFBSUFGQUFBTUFGSUNBcXhEQVBhSGdvQVNnTjlmQUFDQUJRQUFDZ0M4bzNNR0FHUUFFSUFINFY4QUFJQUZBQUFnQUlRSWdIOS9wUFh2S0NRK2dCR0FEWUFId0FBTUNNWDkvNk1IQUFBQW9BRUFuR0FBQUlBRkFBQnNBUEtPdDRtekFBREFBTUFCQUs2QkFjQUFrRHlBQVlBamdOcUI4UUNCQUNJQVFRUUNBSVNCQUlBQndHd0E2NEZTQUFDR0NBQVNBSWlSQWdBeEFRQW9FUUFBakJJQUFHQWdCSEVCQUNTR2dBSEFDQVFRZ0dTQWJZQ1pnR0VOQUNSeEFFSUFzUVlZQUJJQWdFZ0VBSjFnQUFDQUJRQUFBZ0RUZ0tGZ0FBQ0FCUUFBUWdEbkdBRFlGYkpQQndCRWdPQUNUM1lCMFlBVWdaaUJKSUFpZ0lRQkFnSUEwQlJpQlFDRmduR0FLWUFQZ0NtQUFjQUpBREVBa0FKNWdRSEFJQVM0Z0MyQWhJQ2lZQUFBZ0FVQUFDQUFmN0FDd01JRElBaGtnQTZBQWNCSUFERUFDZ0FjZ0FIQUNVRENBZ0FNMEFHcFlBQUFnQVVBQUFJQXhMK3FZQUFBZ0FVQUFCSUFUNEhzZ0xFQVZBQVFvWWlUZTRPa2dQMkFCQkFBQUFBVUFBQUNBQVNoXCIsXCJyYW5nZVwiOntcIm1pblwiOlwiMDVDMUVGQ0JFMTI3NjRcIixcIm1heFwiOlwiRkZcIn19XSJ9 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2021-04-01&%24filter=resourceGroup+eq+%27clitest000001%27+and+name+eq+%27appgw-ip%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&%24skiptoken=eyJuZXh0TWFya2VyIjoiW3tcInRva2VuXCI6XCIrUklEOn5mN045QVB2UEs4WTR6a0FZQUFCZ0FRPT0jUlQ6MiNUUkM6MjAwMCNJU1Y6MiNJRU86NjU1NTEjRlBDOkFnZ0RZUUFBZ0FVQUFBUVFBQUFBRkFBQUEyRUFBSUFGQUFDeUFESU9BSU5BQUJNQUFNQUNBSUJBbm9BRHdBQ0lnbElBQTJFQklCRGhBUmdBSXdBY0FFNGlJQW9UZ0FHQUc0QUJ3SDRBQVFFREFOcUFJd0RBSHdBSEFRQXlnSVNDQThEQUFBQ0NHZ0F4QUFEQTRRQWdDQlVBQXdDQUEyaE1BSUQvSFBVQUFNQWZBQURBZ1FBQUVGRUFRd0FEQWFBQWdBb0NBR01BUUFVRkNRRXdzUUNBQXY2REE4QW9nQ0NBQkFDakFFQU1BRUFMQUpFQ01BQTBCYUFBd1ByaFh5TUFNZ0FBNEErTkV3QTRBQUFDQUNBMllRQUFnQVVBQUFZQThhRVNrT09LT0dFQUFJQUZBQUFHQU5JREFLREFBSjFoQUFDQUJRQUFCQUNSRlBnQTVHRUFBSUFGQUFBTUFDSXVjQUFnQVRDQldvQVhnTzVoQUFDQUJRQUFFQUFYckFxQURZQWNnQUxBQUlnUUFEcUE4V0VBQUlBRkFBQUNBTWVrOG1FQUFJQUZBQUFJQUtNbkFON3pETUFBODJFQUFJQUZBQUFNQVAyWkE4QUFEZ0JnQXdDWWdQUmhBQUNBQlFBQUVnQnRxUUhBTEFKQ0FFQmJBaUFWZ0I2QW00RDFZUUFBZ0FVQUFDUUFneGNGQUFBZVlBQ1FnYUVSTUFBVEFIQUFBR0VxQUJJQUVLT0Z5Y0VBK0FKeEFJQUQ5bUVBQUlBRkFBQWFBRzZodm9Ba0FBRDQ1KzgzOTRWN0VVQy9BRytBQXNBQVhNa0hIbUlBQUlBRkFBQTJBRUVnd0FBMUFBRGd3QjBBc0JjZEFnQmhBZUFQVXdEUUFBRUFJQUJpQVFBS0FRQlNnZ21BRG9BU0FGQWdDZ0FSQUFDZ0tJRUxnQ2xpQUFDQUJRQUFCZ0MwbGdIQUlDcWFZd0FBZ0FVQUFCb0EzNFJJZ0FIQVFJZ3ZnQUxBQ1JCQUFEV0FWWUQzZ0JxRVk0YWNZd0FBZ0FVQUFBNEFrUk1BQlJFQUdBQzdqQ21BMElBRUVBQUFBQlFBQUFJQUJLRT1cIixcInJhbmdlXCI6e1wibWluXCI6XCIwNUMxRUZDQkUxMjc2NFwiLFwibWF4XCI6XCJGRlwifX1dIn0%3D response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip","name":"appgw-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"},"location":"westus2"}]}' @@ -1082,7 +998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:20 GMT + - Tue, 10 May 2022 03:38:40 GMT expires: - '-1' pragma: @@ -1137,23 +1053,23 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_sHLoqzDjFEgieIuMCCjMmuwGYi2Mg36l","name":"ag_deploy_sHLoqzDjFEgieIuMCCjMmuwGYi2Mg36l","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14963814826382921041","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-04-14T04:30:21.9751393Z","duration":"PT0.0004973S","correlationId":"296580d9-445b-4c50-a2b0-14b069411ab7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qYTjSSVkbV5j065WuVYpmkGODFzO7RwN","name":"ag_deploy_qYTjSSVkbV5j065WuVYpmkGODFzO7RwN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4744008701774385772","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-05-10T03:38:42.1851016Z","duration":"PT0.0007328S","correlationId":"4f4df643-d24b-4ce3-a56b-7b0489753366","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_sHLoqzDjFEgieIuMCCjMmuwGYi2Mg36l/operationStatuses/08585516962637384717?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qYTjSSVkbV5j065WuVYpmkGODFzO7RwN/operationStatuses/08585494529635577477?api-version=2021-04-01 cache-control: - no-cache content-length: - - '659' + - '658' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:30:21 GMT + - Tue, 10 May 2022 03:38:41 GMT expires: - '-1' pragma: @@ -1163,7 +1079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -1181,51 +1097,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-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/08585516962637384717?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:30:51 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: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1237,7 +1111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:31:21 GMT + - Tue, 10 May 2022 03:39:12 GMT expires: - '-1' pragma: @@ -1265,9 +1139,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1279,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:31:51 GMT + - Tue, 10 May 2022 03:39:42 GMT expires: - '-1' pragma: @@ -1307,9 +1181,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1321,7 +1195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:32:21 GMT + - Tue, 10 May 2022 03:40:12 GMT expires: - '-1' pragma: @@ -1349,9 +1223,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1363,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:32:51 GMT + - Tue, 10 May 2022 03:40:42 GMT expires: - '-1' pragma: @@ -1391,9 +1265,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1405,7 +1279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:21 GMT + - Tue, 10 May 2022 03:41:11 GMT expires: - '-1' pragma: @@ -1433,9 +1307,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1447,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:51 GMT + - Tue, 10 May 2022 03:41:41 GMT expires: - '-1' pragma: @@ -1475,9 +1349,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1489,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:34:21 GMT + - Tue, 10 May 2022 03:42:12 GMT expires: - '-1' pragma: @@ -1517,9 +1391,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1531,7 +1405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:34:51 GMT + - Tue, 10 May 2022 03:42:42 GMT expires: - '-1' pragma: @@ -1559,9 +1433,9 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516962637384717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494529635577477?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1573,7 +1447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:22 GMT + - Tue, 10 May 2022 03:43:12 GMT expires: - '-1' pragma: @@ -1601,21 +1475,21 @@ interactions: ParameterSetName: - -n -g --sku --public-ip-address --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_sHLoqzDjFEgieIuMCCjMmuwGYi2Mg36l","name":"ag_deploy_sHLoqzDjFEgieIuMCCjMmuwGYi2Mg36l","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14963814826382921041","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-04-14T04:34:59.0820816Z","duration":"PT4M37.1074396S","correlationId":"296580d9-445b-4c50-a2b0-14b069411ab7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"d9bcbb45-903a-4193-97b1-afef9115fd17","sku":{"name":"Standard_v2","tier":"Standard_v2","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}},"type":"Microsoft.Network/applicationGateways/gatewayIPConfigurations"}],"sslCertificates":[],"trustedRootCertificates":[],"trustedClientCertificates":[],"sslProfiles":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","type":"Microsoft.Network/applicationGateways/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]},"type":"Microsoft.Network/applicationGateways/frontendPorts"}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendAddressPools"}],"loadDistributionPolicies":[],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendHttpSettingsCollection"}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","hostNames":[],"requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/httpListeners"}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1","etag":"W/\"5c0b9c97-391e-4618-b905-c8acf8324b23\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}},"type":"Microsoft.Network/applicationGateways/requestRoutingRules"}],"probes":[],"rewriteRuleSets":[],"redirectConfigurations":[],"privateLinkConfigurations":[],"privateEndpointConnections":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qYTjSSVkbV5j065WuVYpmkGODFzO7RwN","name":"ag_deploy_qYTjSSVkbV5j065WuVYpmkGODFzO7RwN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4744008701774385772","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-05-10T03:43:05.258686Z","duration":"PT4M23.0743172S","correlationId":"4f4df643-d24b-4ce3-a56b-7b0489753366","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"57317985-4c38-4b76-8e41-03e0ee7f850d","sku":{"name":"Standard_v2","tier":"Standard_v2","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}},"type":"Microsoft.Network/applicationGateways/gatewayIPConfigurations"}],"sslCertificates":[],"trustedRootCertificates":[],"trustedClientCertificates":[],"sslProfiles":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","type":"Microsoft.Network/applicationGateways/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]},"type":"Microsoft.Network/applicationGateways/frontendPorts"}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendAddressPools"}],"loadDistributionPolicies":[],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendHttpSettingsCollection"}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","hostNames":[],"requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/httpListeners"}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1","etag":"W/\"72389d50-c863-4db5-b899-3e7320dcd321\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}},"type":"Microsoft.Network/applicationGateways/requestRoutingRules"}],"probes":[],"rewriteRuleSets":[],"redirectConfigurations":[],"privateLinkConfigurations":[],"privateEndpointConnections":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw"}]}}' headers: cache-control: - no-cache content-length: - - '6893' + - '6891' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:22 GMT + - Tue, 10 May 2022 03:43:12 GMT expires: - '-1' pragma: @@ -1644,12 +1518,12 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-04-14T04:30:06Z","deletion_due_time":"1650169942","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:38:27Z","deletion_due_time":"1652413110","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1658,7 +1532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:22 GMT + - Tue, 10 May 2022 03:43:12 GMT expires: - '-1' pragma: @@ -1687,24 +1561,26 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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":"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/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"}]}' + 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-14T06:47:05.5411832Z","updatedOn":"2022-04-14T06:47:05.5411832Z","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/78e9b8d7-1b4b-4a28-8628-a010d123f198","type":"Microsoft.Authorization/roleAssignments","name":"78e9b8d7-1b4b-4a28-8628-a010d123f198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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:17.4269794Z","updatedOn":"2022-05-02T13:40:17.4269794Z","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/9eb0826f-d585-4b2c-297f-88912678969e","type":"Microsoft.Authorization/roleAssignments","name":"9eb0826f-d585-4b2c-297f-88912678969e"},{"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/b24988ac-6180-42a0-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:18.0736502Z","updatedOn":"2022-05-02T13:40:18.0736502Z","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/6791fc7d-4e72-449e-bbcd-1998969e613c","type":"Microsoft.Authorization/roleAssignments","name":"6791fc7d-4e72-449e-bbcd-1998969e613c"},{"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:17.9791750Z","updatedOn":"2022-05-02T13:40:17.9791750Z","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/1e3ee08d-0f20-4903-0e6c-ddb52a8c295f","type":"Microsoft.Authorization/roleAssignments","name":"1e3ee08d-0f20-4903-0e6c-ddb52a8c295f"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.4609962Z","updatedOn":"2022-05-02T13:40:18.4609962Z","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/ed89ddaa-12a2-4a23-9534-e5ba50244d5e","type":"Microsoft.Authorization/roleAssignments","name":"ed89ddaa-12a2-4a23-9534-e5ba50244d5e"},{"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:19.0797113Z","updatedOn":"2022-05-02T13:40:19.0797113Z","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/c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6","type":"Microsoft.Authorization/roleAssignments","name":"c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6"},{"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:19.1390601Z","updatedOn":"2022-05-02T13:40:19.1390601Z","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/1e9910d0-3818-45f1-56ba-fe51a728dc26","type":"Microsoft.Authorization/roleAssignments","name":"1e9910d0-3818-45f1-56ba-fe51a728dc26"},{"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.5129755Z","updatedOn":"2022-05-02T13:40:18.5129755Z","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/d3cf575a-3dc9-47b9-969d-99c43c846fdd","type":"Microsoft.Authorization/roleAssignments","name":"d3cf575a-3dc9-47b9-969d-99c43c846fdd"},{"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:19.0754481Z","updatedOn":"2022-05-02T13:40:19.0754481Z","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/a9284cbe-6d2e-47d0-a5a2-15771e2bcf16","type":"Microsoft.Authorization/roleAssignments","name":"a9284cbe-6d2e-47d0-a5a2-15771e2bcf16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-a8ff-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-05T19:30:29.6139441Z","updatedOn":"2022-05-05T19:30:29.6139441Z","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/d10052da-36e9-4745-8d05-0937faacd129","type":"Microsoft.Authorization/roleAssignments","name":"d10052da-36e9-4745-8d05-0937faacd129"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T05:45:49.3912934Z","updatedOn":"2022-05-09T05:45:49.3912934Z","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/d6925389-74b3-49b7-88ca-e90219deca8a","type":"Microsoft.Authorization/roleAssignments","name":"d6925389-74b3-49b7-88ca-e90219deca8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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-09T10:44:26.6330451Z","updatedOn":"2022-05-09T10:44:26.6330451Z","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/478ea2e6-34ab-4b73-34fc-b0cf7aa617d1","type":"Microsoft.Authorization/roleAssignments","name":"478ea2e6-34ab-4b73-34fc-b0cf7aa617d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:27.4767981Z","updatedOn":"2022-05-09T10:44:27.4767981Z","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/a95b3e38-9128-457e-1313-6c0478cffb90","type":"Microsoft.Authorization/roleAssignments","name":"a95b3e38-9128-457e-1313-6c0478cffb90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:26.1076222Z","updatedOn":"2022-05-09T10:44:26.1076222Z","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/cc56c9de-5dfb-4c61-3f59-46a5175b28c5","type":"Microsoft.Authorization/roleAssignments","name":"cc56c9de-5dfb-4c61-3f59-46a5175b28c5"},{"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-09T10:44:26.6828254Z","updatedOn":"2022-05-09T10:44:26.6828254Z","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/b1f58e56-e37d-4a1c-5918-ebbe6806b915","type":"Microsoft.Authorization/roleAssignments","name":"b1f58e56-e37d-4a1c-5918-ebbe6806b915"},{"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-09T10:44:27.3117746Z","updatedOn":"2022-05-09T10:44:27.3117746Z","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/6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab","type":"Microsoft.Authorization/roleAssignments","name":"6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab"},{"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-09T10:44:27.2809772Z","updatedOn":"2022-05-09T10:44:27.2809772Z","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/3ef6fc61-d442-4e52-e42d-567f83002f57","type":"Microsoft.Authorization/roleAssignments","name":"3ef6fc61-d442-4e52-e42d-567f83002f57"},{"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-09T10:44:28.1109276Z","updatedOn":"2022-05-09T10:44:28.1109276Z","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/d42b1164-a45c-4e98-65ea-5983642424a7","type":"Microsoft.Authorization/roleAssignments","name":"d42b1164-a45c-4e98-65ea-5983642424a7"},{"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-09T10:44:27.5269322Z","updatedOn":"2022-05-09T10:44:27.5269322Z","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/6a629e0b-2134-45c1-3800-d5fa7a5f9313","type":"Microsoft.Authorization/roleAssignments","name":"6a629e0b-2134-45c1-3800-d5fa7a5f9313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/b24988ac-6180-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/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"}]}' headers: cache-control: - no-cache content-length: - - '316403' + - '349963' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:23 GMT + - Tue, 10 May 2022 03:43:13 GMT expires: - '-1' pragma: @@ -1724,7 +1600,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqqsa3in2t-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiax7hxd6h-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -1732,13 +1608,15 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": true, "config": {"applicationGatewayId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -1749,40 +1627,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1819' + - '1952' Content-Type: - application/json ParameterSetName: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqqsa3in2t-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiax7hxd6h-8ecadf\",\n \"fqdn\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1797,22 +1674,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3701' + - '3880' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:27 GMT + - Tue, 10 May 2022 03:43:17 GMT expires: - '-1' pragma: @@ -1824,7 +1703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1843,33 +1722,32 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqqsa3in2t-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiax7hxd6h-8ecadf\",\n \"fqdn\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1884,20 +1762,22 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3701' + - '3880' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:27 GMT + - Tue, 10 May 2022 03:43:17 GMT expires: - '-1' pragma: @@ -1930,8 +1810,8 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -1948,7 +1828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:27 GMT + - Tue, 10 May 2022 03:43:18 GMT expires: - '-1' pragma: @@ -1988,25 +1868,29 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/a090a8d9-8073-4b20-8ba1-8d9cbc19cf8d?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/d980bc9d-c8f9-4bc2-8c16-3a16ed917488?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e0e13f655c7645ba919010bfce712a15 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 70bc0785eeda4808b7bacdb19377dff3 + 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: - - '163' + - '489' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:28 GMT + - Tue, 10 May 2022 03:43:19 GMT expires: - '-1' pragma: @@ -2037,222 +1921,8 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:35:31 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/1ce04038-8a51-4be8-b31c-28e99be94595?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e0e13f655c7645ba919010bfce712a15 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:35:31 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:35:36 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/0476c1dc-01f9-408e-9842-85ec9c0f33ba?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e0e13f655c7645ba919010bfce712a15 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:35:36 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2269,7 +1939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:42 GMT + - Tue, 10 May 2022 03:43:21 GMT expires: - '-1' pragma: @@ -2309,25 +1979,29 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/b32e2611-4f79-4710-867f-e51a88758324?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/0198d91e-7231-4da0-9d25-516c0c2d75cb?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e0e13f655c7645ba919010bfce712a15 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 70bc0785eeda4808b7bacdb19377dff3 + 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: - - '163' + - '489' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:43 GMT + - Tue, 10 May 2022 03:43:21 GMT expires: - '-1' pragma: @@ -2339,7 +2013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 400 message: Bad Request @@ -2358,8 +2032,8 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2376,7 +2050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:52 GMT + - Tue, 10 May 2022 03:43:25 GMT expires: - '-1' pragma: @@ -2416,15 +2090,15 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/48c85e5f-da27-48cb-ba0f-1900f9279518?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/9465c387-cf49-45c4-ab4f-32de6627f3c0?api-version=2020-04-01-preview 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:35:53.5099606Z","updatedOn":"2022-04-14T04:35:53.8068988Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/48c85e5f-da27-48cb-ba0f-1900f9279518","type":"Microsoft.Authorization/roleAssignments","name":"48c85e5f-da27-48cb-ba0f-1900f9279518"}' + 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T03:43:26.1146630Z","updatedOn":"2022-05-10T03:43:26.4115428Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/9465c387-cf49-45c4-ab4f-32de6627f3c0","type":"Microsoft.Authorization/roleAssignments","name":"9465c387-cf49-45c4-ab4f-32de6627f3c0"}' headers: cache-control: - no-cache @@ -2433,7 +2107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:56 GMT + - Tue, 10 May 2022 03:43:26 GMT expires: - '-1' pragma: @@ -2445,7 +2119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2464,63 +2138,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:35: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: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2529,7 +2154,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:27 GMT + - Tue, 10 May 2022 03:43:47 GMT expires: - '-1' pragma: @@ -2562,14 +2187,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2578,7 +2203,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:57 GMT + - Tue, 10 May 2022 03:44:17 GMT expires: - '-1' pragma: @@ -2611,14 +2236,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2627,7 +2252,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:28 GMT + - Tue, 10 May 2022 03:44:47 GMT expires: - '-1' pragma: @@ -2660,14 +2285,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2676,7 +2301,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:57 GMT + - Tue, 10 May 2022 03:45:17 GMT expires: - '-1' pragma: @@ -2709,14 +2334,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2725,7 +2350,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:27 GMT + - Tue, 10 May 2022 03:45:47 GMT expires: - '-1' pragma: @@ -2758,14 +2383,14 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\"\n }" headers: cache-control: - no-cache @@ -2774,7 +2399,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:57 GMT + - Tue, 10 May 2022 03:46:17 GMT expires: - '-1' pragma: @@ -2807,15 +2432,15 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35e2c6d6-39f5-43a5-9913-379148980c47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa1e0065-fdc5-44f9-a3bd-e813bac2a575?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6c6e235-f539-a543-9913-379148980c47\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:35:27.6666666Z\",\n \"endTime\": - \"2022-04-14T04:39:05.2954976Z\"\n }" + string: "{\n \"name\": \"65001efa-c5fd-f944-a3bd-e813bac2a575\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:43:17.5066666Z\",\n \"endTime\": + \"2022-05-10T03:46:39.5075379Z\"\n }" headers: cache-control: - no-cache @@ -2824,7 +2449,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:28 GMT + - Tue, 10 May 2022 03:46:47 GMT expires: - '-1' pragma: @@ -2857,33 +2482,32 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqqsa3in2t-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqqsa3in2t-8ecadf-eb1ac40e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiax7hxd6h-8ecadf\",\n \"fqdn\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiax7hxd6h-8ecadf-6b900fad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2895,7 +2519,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ee1339b4-77ab-4196-98fc-94bdc424b440\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ecc89b99-605f-42ac-99c1-ef05189bdfde\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2913,11 +2537,11 @@ interactions: cache-control: - no-cache content-length: - - '4728' + - '4721' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:28 GMT + - Tue, 10 May 2022 03:46:47 GMT expires: - '-1' pragma: @@ -2950,8 +2574,8 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2969,7 +2593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:39:28 GMT + - Tue, 10 May 2022 03:46:48 GMT expires: - '-1' pragma: @@ -3009,15 +2633,15 @@ interactions: - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/6599854f-8084-4bcd-9a61-41047a7154e8?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/9503db98-7c34-4ea2-80a6-5fdc637be63a?api-version=2020-04-01-preview 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","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:39:29.1679037Z","updatedOn":"2022-04-14T04:39:29.4491483Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/6599854f-8084-4bcd-9a61-41047a7154e8","type":"Microsoft.Authorization/roleAssignments","name":"6599854f-8084-4bcd-9a61-41047a7154e8"}' + 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","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T03:46:48.9021638Z","updatedOn":"2022-05-10T03:46:49.2146678Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/9503db98-7c34-4ea2-80a6-5fdc637be63a","type":"Microsoft.Authorization/roleAssignments","name":"9503db98-7c34-4ea2-80a6-5fdc637be63a"}' headers: cache-control: - no-cache @@ -3026,7 +2650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:39:31 GMT + - Tue, 10 May 2022 03:46:51 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml index 2bb0bf94756..bb61277f897 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:36:50Z"},"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","date":"2022-05-10T03:43:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:50 GMT + - Tue, 10 May 2022 03:43:40 GMT expires: - '-1' pragma: @@ -62,21 +62,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"2a41369a-023e-4369-8e16-10390a51f38f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8e93ff67-3d88-4e6a-84d6-7d04693919b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"503808be-8168-4210-bc52-4e8f68b7c1d3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6ec2a77f-2a18-476e-9b1e-de4604ecf6e8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"2a41369a-023e-4369-8e16-10390a51f38f\\\"\",\r\n + \ \"etag\": \"W/\\\"8e93ff67-3d88-4e6a-84d6-7d04693919b5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -87,7 +87,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fe3f45ad-8370-4900-9c39-3350dbfb2134?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a257f9d8-b209-4825-ba0e-e9d54648be74?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:50 GMT + - Tue, 10 May 2022 03:43:41 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e3aac1b-1802-44a7-94fe-89dd018f5341 + - 14835d63-9f64-4627-b7fc-99a85c4f30cb x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,9 +128,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/fe3f45ad-8370-4900-9c39-3350dbfb2134?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a257f9d8-b209-4825-ba0e-e9d54648be74?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:53 GMT + - Tue, 10 May 2022 03:43:44 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 160642cb-72f4-4821-9e3f-c346261d4f7b + - 18ce8063-1932-4ccb-9031-bf413590be86 status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a632ff11-40cd-4064-94bb-e4da2cb3a579\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"503808be-8168-4210-bc52-4e8f68b7c1d3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6ec2a77f-2a18-476e-9b1e-de4604ecf6e8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5\\\"\",\r\n + \ \"etag\": \"W/\\\"a632ff11-40cd-4064-94bb-e4da2cb3a579\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -206,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:53 GMT + - Tue, 10 May 2022 03:43:44 GMT etag: - - W/"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5" + - W/"a632ff11-40cd-4064-94bb-e4da2cb3a579" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 712bbd55-d36b-43e5-92dc-95c4e0390159 + - ff84f292-14a5-42c3-bfed-469cc64c6845 status: code: 200 message: OK @@ -243,21 +243,21 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a632ff11-40cd-4064-94bb-e4da2cb3a579\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"503808be-8168-4210-bc52-4e8f68b7c1d3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6ec2a77f-2a18-476e-9b1e-de4604ecf6e8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5\\\"\",\r\n + \ \"etag\": \"W/\\\"a632ff11-40cd-4064-94bb-e4da2cb3a579\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -272,9 +272,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:54 GMT + - Tue, 10 May 2022 03:43:44 GMT etag: - - W/"ce334d7a-9f6e-48cc-a9d1-3b3cc6a496e5" + - W/"a632ff11-40cd-4064-94bb-e4da2cb3a579" expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7e516f50-4a3d-49e6-9f68-e3d19ca36854 + - 14cf83a0-8759-4b02-85dd-cab017b68967 status: code: 200 message: OK @@ -321,28 +321,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"ee76f958-db02-4325-8e82-29516f1007fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1ec5037a-8202-4289-998c-e412b1626218\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"503808be-8168-4210-bc52-4e8f68b7c1d3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6ec2a77f-2a18-476e-9b1e-de4604ecf6e8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"ee76f958-db02-4325-8e82-29516f1007fc\\\"\",\r\n + \ \"etag\": \"W/\\\"1ec5037a-8202-4289-998c-e412b1626218\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"ee76f958-db02-4325-8e82-29516f1007fc\\\"\",\r\n + \ \"etag\": \"W/\\\"1ec5037a-8202-4289-998c-e412b1626218\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8c66c4fe-8850-4363-bf88-639694d45f40?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/416a023d-94c2-48cd-a0ed-ed60628a0f20?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:55 GMT + - Tue, 10 May 2022 03:43:47 GMT expires: - '-1' pragma: @@ -378,9 +378,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 141e2c07-f95e-4813-96fe-5a4037ac26a0 + - b571d1fe-c926-4243-8fe7-e0de905145f9 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -398,9 +398,9 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/8c66c4fe-8850-4363-bf88-639694d45f40?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/416a023d-94c2-48cd-a0ed-ed60628a0f20?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:58 GMT + - Tue, 10 May 2022 03:43:50 GMT expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05b407cb-7de7-486d-bbfd-5a0d718b3bd2 + - 2f5b75f5-3595-4084-ae73-371791a1306d status: code: 200 message: OK @@ -447,28 +447,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"7b48f358-47fe-47df-8ffe-77b8d429a2fe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"649771bd-e7fc-4794-a17f-4426564af594\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"503808be-8168-4210-bc52-4e8f68b7c1d3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6ec2a77f-2a18-476e-9b1e-de4604ecf6e8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"7b48f358-47fe-47df-8ffe-77b8d429a2fe\\\"\",\r\n + \ \"etag\": \"W/\\\"649771bd-e7fc-4794-a17f-4426564af594\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"7b48f358-47fe-47df-8ffe-77b8d429a2fe\\\"\",\r\n + \ \"etag\": \"W/\\\"649771bd-e7fc-4794-a17f-4426564af594\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -483,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:58 GMT + - Tue, 10 May 2022 03:43:50 GMT etag: - - W/"7b48f358-47fe-47df-8ffe-77b8d429a2fe" + - W/"649771bd-e7fc-4794-a17f-4426564af594" expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d90958e-083d-48fa-9b81-eafb20b96105 + - 1d4b4e5f-5687-4dcf-85a3-6728e8f415d1 status: code: 200 message: OK @@ -521,12 +521,12 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:36:50Z"},"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","date":"2022-05-10T03:43:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -535,7 +535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:59 GMT + - Tue, 10 May 2022 03:43:51 GMT expires: - '-1' pragma: @@ -564,24 +564,26 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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":"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/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"}]}' + 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-14T06:47:05.5411832Z","updatedOn":"2022-04-14T06:47:05.5411832Z","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/78e9b8d7-1b4b-4a28-8628-a010d123f198","type":"Microsoft.Authorization/roleAssignments","name":"78e9b8d7-1b4b-4a28-8628-a010d123f198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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:17.4269794Z","updatedOn":"2022-05-02T13:40:17.4269794Z","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/9eb0826f-d585-4b2c-297f-88912678969e","type":"Microsoft.Authorization/roleAssignments","name":"9eb0826f-d585-4b2c-297f-88912678969e"},{"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/b24988ac-6180-42a0-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:18.0736502Z","updatedOn":"2022-05-02T13:40:18.0736502Z","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/6791fc7d-4e72-449e-bbcd-1998969e613c","type":"Microsoft.Authorization/roleAssignments","name":"6791fc7d-4e72-449e-bbcd-1998969e613c"},{"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:17.9791750Z","updatedOn":"2022-05-02T13:40:17.9791750Z","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/1e3ee08d-0f20-4903-0e6c-ddb52a8c295f","type":"Microsoft.Authorization/roleAssignments","name":"1e3ee08d-0f20-4903-0e6c-ddb52a8c295f"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.4609962Z","updatedOn":"2022-05-02T13:40:18.4609962Z","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/ed89ddaa-12a2-4a23-9534-e5ba50244d5e","type":"Microsoft.Authorization/roleAssignments","name":"ed89ddaa-12a2-4a23-9534-e5ba50244d5e"},{"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:19.0797113Z","updatedOn":"2022-05-02T13:40:19.0797113Z","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/c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6","type":"Microsoft.Authorization/roleAssignments","name":"c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6"},{"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:19.1390601Z","updatedOn":"2022-05-02T13:40:19.1390601Z","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/1e9910d0-3818-45f1-56ba-fe51a728dc26","type":"Microsoft.Authorization/roleAssignments","name":"1e9910d0-3818-45f1-56ba-fe51a728dc26"},{"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.5129755Z","updatedOn":"2022-05-02T13:40:18.5129755Z","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/d3cf575a-3dc9-47b9-969d-99c43c846fdd","type":"Microsoft.Authorization/roleAssignments","name":"d3cf575a-3dc9-47b9-969d-99c43c846fdd"},{"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:19.0754481Z","updatedOn":"2022-05-02T13:40:19.0754481Z","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/a9284cbe-6d2e-47d0-a5a2-15771e2bcf16","type":"Microsoft.Authorization/roleAssignments","name":"a9284cbe-6d2e-47d0-a5a2-15771e2bcf16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-a8ff-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-05T19:30:29.6139441Z","updatedOn":"2022-05-05T19:30:29.6139441Z","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/d10052da-36e9-4745-8d05-0937faacd129","type":"Microsoft.Authorization/roleAssignments","name":"d10052da-36e9-4745-8d05-0937faacd129"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T05:45:49.3912934Z","updatedOn":"2022-05-09T05:45:49.3912934Z","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/d6925389-74b3-49b7-88ca-e90219deca8a","type":"Microsoft.Authorization/roleAssignments","name":"d6925389-74b3-49b7-88ca-e90219deca8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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-09T10:44:26.6330451Z","updatedOn":"2022-05-09T10:44:26.6330451Z","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/478ea2e6-34ab-4b73-34fc-b0cf7aa617d1","type":"Microsoft.Authorization/roleAssignments","name":"478ea2e6-34ab-4b73-34fc-b0cf7aa617d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:27.4767981Z","updatedOn":"2022-05-09T10:44:27.4767981Z","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/a95b3e38-9128-457e-1313-6c0478cffb90","type":"Microsoft.Authorization/roleAssignments","name":"a95b3e38-9128-457e-1313-6c0478cffb90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:26.1076222Z","updatedOn":"2022-05-09T10:44:26.1076222Z","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/cc56c9de-5dfb-4c61-3f59-46a5175b28c5","type":"Microsoft.Authorization/roleAssignments","name":"cc56c9de-5dfb-4c61-3f59-46a5175b28c5"},{"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-09T10:44:26.6828254Z","updatedOn":"2022-05-09T10:44:26.6828254Z","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/b1f58e56-e37d-4a1c-5918-ebbe6806b915","type":"Microsoft.Authorization/roleAssignments","name":"b1f58e56-e37d-4a1c-5918-ebbe6806b915"},{"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-09T10:44:27.3117746Z","updatedOn":"2022-05-09T10:44:27.3117746Z","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/6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab","type":"Microsoft.Authorization/roleAssignments","name":"6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab"},{"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-09T10:44:27.2809772Z","updatedOn":"2022-05-09T10:44:27.2809772Z","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/3ef6fc61-d442-4e52-e42d-567f83002f57","type":"Microsoft.Authorization/roleAssignments","name":"3ef6fc61-d442-4e52-e42d-567f83002f57"},{"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-09T10:44:28.1109276Z","updatedOn":"2022-05-09T10:44:28.1109276Z","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/d42b1164-a45c-4e98-65ea-5983642424a7","type":"Microsoft.Authorization/roleAssignments","name":"d42b1164-a45c-4e98-65ea-5983642424a7"},{"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-09T10:44:27.5269322Z","updatedOn":"2022-05-09T10:44:27.5269322Z","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/6a629e0b-2134-45c1-3800-d5fa7a5f9313","type":"Microsoft.Authorization/roleAssignments","name":"6a629e0b-2134-45c1-3800-d5fa7a5f9313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/b24988ac-6180-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/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"}]}' headers: cache-control: - no-cache content-length: - - '316403' + - '349963' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:59 GMT + - Tue, 10 May 2022 03:43:51 GMT expires: - '-1' pragma: @@ -601,7 +603,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdaf6a6zxt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestb24ck3acy-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -609,14 +611,16 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": true, "config": {"applicationGatewayName": "gateway", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -627,40 +631,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1872' + - '2005' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdaf6a6zxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestb24ck3acy-8ecadf\",\n \"fqdn\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -676,22 +679,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3790' + - '3969' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:03 GMT + - Tue, 10 May 2022 03:43:54 GMT expires: - '-1' pragma: @@ -703,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -722,33 +727,32 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdaf6a6zxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestb24ck3acy-8ecadf\",\n \"fqdn\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -764,20 +768,22 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3790' + - '3969' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:03 GMT + - Tue, 10 May 2022 03:43:55 GMT expires: - '-1' pragma: @@ -810,115 +816,8 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:37:04 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/2811e5c5-e0f7-46f1-923f-42888d4f14bb?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 164214a04f4c4431a4b90df2521ac393 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:04 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -935,7 +834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:06 GMT + - Tue, 10 May 2022 03:43:55 GMT expires: - '-1' pragma: @@ -975,132 +874,24 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c7da8a9e-e495-4470-a225-426b98fb87ee?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/f0959d6f-c61f-43c7-9817-b4bc9a1eabf8?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 164214a04f4c4431a4b90df2521ac393 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T03:43:56.7124908Z","updatedOn":"2022-05-10T03:43:57.3531881Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/f0959d6f-c61f-43c7-9817-b4bc9a1eabf8","type":"Microsoft.Authorization/roleAssignments","name":"f0959d6f-c61f-43c7-9817-b4bc9a1eabf8"}' headers: cache-control: - no-cache content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:06 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:37:11 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c3fd4fd5-321d-4e4b-b7c2-3940d1618b5f?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 164214a04f4c4431a4b90df2521ac393 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' + - '1041' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:12 GMT + - Tue, 10 May 2022 03:43:59 GMT expires: - '-1' pragma: @@ -1112,15 +903,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1131,138 +922,29 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?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\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:17 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/083a33cb-6937-428e-a1a9-ee40fdd0c1be?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 164214a04f4c4431a4b90df2521ac393 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' + - '126' content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:18 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:37:27 GMT + - Tue, 10 May 2022 03:44:25 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1274,62 +956,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/9555bd2f-684b-42db-88a3-36c128b80f06?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 164214a04f4c4431a4b90df2521ac393 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:27 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 400 - message: Bad Request - request: body: null headers: @@ -1345,14 +971,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1361,7 +987,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:33 GMT + - Tue, 10 May 2022 03:44:55 GMT expires: - '-1' pragma: @@ -1379,112 +1005,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:37:37 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/e74074b3-6986-48db-b8b3-e70ba85af38b?api-version=2020-04-01-preview - 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:37:37.9949025Z","updatedOn":"2022-04-14T04:37:38.2761800Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/e74074b3-6986-48db-b8b3-e70ba85af38b","type":"Microsoft.Authorization/roleAssignments","name":"e74074b3-6986-48db-b8b3-e70ba85af38b"}' - headers: - cache-control: - - no-cache - content-length: - - '1041' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:37:40 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created - request: body: null headers: @@ -1500,14 +1020,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1516,7 +1036,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:03 GMT + - Tue, 10 May 2022 03:45:25 GMT expires: - '-1' pragma: @@ -1549,14 +1069,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1565,7 +1085,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:33 GMT + - Tue, 10 May 2022 03:45:55 GMT expires: - '-1' pragma: @@ -1598,14 +1118,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1614,7 +1134,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:03 GMT + - Tue, 10 May 2022 03:46:25 GMT expires: - '-1' pragma: @@ -1647,14 +1167,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1663,7 +1183,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:33 GMT + - Tue, 10 May 2022 03:46:55 GMT expires: - '-1' pragma: @@ -1696,14 +1216,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\"\n }" headers: cache-control: - no-cache @@ -1712,7 +1232,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:04 GMT + - Tue, 10 May 2022 03:47:25 GMT expires: - '-1' pragma: @@ -1745,15 +1265,15 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c4d40da-98e4-4093-8890-02479a7f94f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ffb1d64-1c6c-4089-a0cd-34f258be8593?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da404d8c-e498-9340-8890-02479a7f94f8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:37:03.6366666Z\",\n \"endTime\": - \"2022-04-14T04:40:15.2889677Z\"\n }" + string: "{\n \"name\": \"641dfb6f-6c1c-8940-a0cd-34f258be8593\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:43:55.5233333Z\",\n \"endTime\": + \"2022-05-10T03:47:38.8466197Z\"\n }" headers: cache-control: - no-cache @@ -1762,7 +1282,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:34 GMT + - Tue, 10 May 2022 03:47:55 GMT expires: - '-1' pragma: @@ -1795,33 +1315,32 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdaf6a6zxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdaf6a6zxt-8ecadf-58d40202.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestb24ck3acy-8ecadf\",\n \"fqdn\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb24ck3acy-8ecadf-0092a757.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1834,7 +1353,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/28d717e1-e3e3-41eb-8507-783b793d7abe\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5463200-5a03-40a6-9b8c-af155e8c100e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1852,11 +1371,11 @@ interactions: cache-control: - no-cache content-length: - - '4817' + - '4810' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:34 GMT + - Tue, 10 May 2022 03:47:56 GMT expires: - '-1' pragma: @@ -1889,8 +1408,8 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -1907,7 +1426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:40:34 GMT + - Tue, 10 May 2022 03:47:56 GMT expires: - '-1' pragma: @@ -1947,15 +1466,15 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name --appgw-subnet-id --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/ddb11e53-fde8-42f0-8ccd-6e29e9d71b83?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/91a4f063-89be-4149-8b7e-1da7a1bbdbb6?api-version=2020-04-01-preview 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/cliakstest000003/subnets/appgw-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:40:35.0052617Z","updatedOn":"2022-04-14T04:40:35.2864658Z","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/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/ddb11e53-fde8-42f0-8ccd-6e29e9d71b83","type":"Microsoft.Authorization/roleAssignments","name":"ddb11e53-fde8-42f0-8ccd-6e29e9d71b83"}' + 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/cliakstest000003/subnets/appgw-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T03:47:57.6665103Z","updatedOn":"2022-05-10T03:47:57.9944950Z","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/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/91a4f063-89be-4149-8b7e-1da7a1bbdbb6","type":"Microsoft.Authorization/roleAssignments","name":"91a4f063-89be-4149-8b7e-1da7a1bbdbb6"}' headers: cache-control: - no-cache @@ -1964,7 +1483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:40:35 GMT + - Tue, 10 May 2022 03:47:59 GMT expires: - '-1' pragma: @@ -1976,7 +1495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml index 4f40e1f88da..36bf4cb20bb 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:36:21Z"},"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","date":"2022-05-10T03:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:36:21 GMT + - Tue, 10 May 2022 03:41:08 GMT expires: - '-1' pragma: @@ -44,14 +44,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfufgicict-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyn6tho5im-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", @@ -59,7 +59,8 @@ interactions: "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}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -70,39 +71,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1631' + - '1764' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfufgicict-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyn6tho5im-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -117,21 +118,23 @@ interactions: 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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3312' + - '3491' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:25 GMT + - Tue, 10 May 2022 03:41:11 GMT expires: - '-1' pragma: @@ -143,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -162,14 +165,112 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:41: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 --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:42: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 -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +279,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:55 GMT + - Tue, 10 May 2022 03:42:42 GMT expires: - '-1' pragma: @@ -211,14 +312,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +328,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:25 GMT + - Tue, 10 May 2022 03:43:12 GMT expires: - '-1' pragma: @@ -260,14 +361,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +377,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:54 GMT + - Tue, 10 May 2022 03:43:42 GMT expires: - '-1' pragma: @@ -309,14 +410,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +426,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:24 GMT + - Tue, 10 May 2022 03:44:12 GMT expires: - '-1' pragma: @@ -358,14 +459,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:54 GMT + - Tue, 10 May 2022 03:44:43 GMT expires: - '-1' pragma: @@ -407,14 +508,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +524,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:25 GMT + - Tue, 10 May 2022 03:45:12 GMT expires: - '-1' pragma: @@ -456,15 +557,15 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/797ae09f-cf5d-4ab8-b33f-a94d009ad58a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37ab3278-e0e7-493e-9741-c3a3e3f795cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9fe07a79-5dcf-b84a-b33f-a94d009ad58a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:36:25.0433333Z\",\n \"endTime\": - \"2022-04-14T04:39:28.0293984Z\"\n }" + string: "{\n \"name\": \"7832ab37-e7e0-3e49-9741-c3a3e3f795cf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:41:12.5366666Z\",\n \"endTime\": + \"2022-05-10T03:45:13.9701149Z\"\n }" headers: cache-control: - no-cache @@ -473,7 +574,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:55 GMT + - Tue, 10 May 2022 03:45:42 GMT expires: - '-1' pragma: @@ -506,39 +607,39 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfufgicict-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyn6tho5im-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2fe11a55-c4c0-449d-aacf-164bf1e7ba51\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/945ea62b-b275-426c-a4bc-22cc1f6232c3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -559,11 +660,11 @@ interactions: cache-control: - no-cache content-length: - - '3965' + - '3958' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:55 GMT + - Tue, 10 May 2022 03:45:43 GMT expires: - '-1' pragma: @@ -596,39 +697,39 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfufgicict-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyn6tho5im-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2fe11a55-c4c0-449d-aacf-164bf1e7ba51\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/945ea62b-b275-426c-a4bc-22cc1f6232c3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -649,11 +750,11 @@ interactions: cache-control: - no-cache content-length: - - '3965' + - '3958' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:56 GMT + - Tue, 10 May 2022 03:45:43 GMT expires: - '-1' pragma: @@ -673,28 +774,29 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestfufgicict-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestyn6tho5im-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2fe11a55-c4c0-449d-aacf-164bf1e7ba51"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/945ea62b-b275-426c-a4bc-22cc1f6232c3"}]}, "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": {"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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -705,46 +807,46 @@ interactions: Connection: - keep-alive Content-Length: - - '2607' + - '2688' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfufgicict-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyn6tho5im-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2fe11a55-c4c0-449d-aacf-164bf1e7ba51\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/945ea62b-b275-426c-a4bc-22cc1f6232c3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -756,21 +858,24 @@ interactions: {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3913' + - '4095' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:58 GMT + - Tue, 10 May 2022 03:45:46 GMT expires: - '-1' pragma: @@ -786,56 +891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id - -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:40: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 + - '1199' status: code: 200 message: OK @@ -854,23 +910,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\"\n }" + string: "{\n \"name\": \"8a4c3cb7-26be-454b-8171-d9c66455f776\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:46.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:58 GMT + - Tue, 10 May 2022 03:46:16 GMT expires: - '-1' pragma: @@ -903,23 +959,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\"\n }" + string: "{\n \"name\": \"8a4c3cb7-26be-454b-8171-d9c66455f776\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:46.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:28 GMT + - Tue, 10 May 2022 03:46:46 GMT expires: - '-1' pragma: @@ -952,23 +1008,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\"\n }" + string: "{\n \"name\": \"8a4c3cb7-26be-454b-8171-d9c66455f776\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:46.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:58 GMT + - Tue, 10 May 2022 03:47:16 GMT expires: - '-1' pragma: @@ -1001,23 +1057,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\"\n }" + string: "{\n \"name\": \"8a4c3cb7-26be-454b-8171-d9c66455f776\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:46.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:28 GMT + - Tue, 10 May 2022 03:47:46 GMT expires: - '-1' pragma: @@ -1050,24 +1106,24 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94523fa3-c766-447a-b1f5-17501967b7b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b73c4c8a-be26-4b45-8171-d9c66455f776?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a33f5294-66c7-7a44-b1f5-17501967b7b1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:39:58.9066666Z\",\n \"endTime\": - \"2022-04-14T04:42:37.7022014Z\"\n }" + string: "{\n \"name\": \"8a4c3cb7-26be-454b-8171-d9c66455f776\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:45:46.57Z\",\n \"endTime\": + \"2022-05-10T03:47:53.7340404Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:59 GMT + - Tue, 10 May 2022 03:48:16 GMT expires: - '-1' pragma: @@ -1100,39 +1156,39 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfufgicict-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfufgicict-8ecadf-79eeffd2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyn6tho5im-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyn6tho5im-8ecadf-af470126.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2fe11a55-c4c0-449d-aacf-164bf1e7ba51\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/945ea62b-b275-426c-a4bc-22cc1f6232c3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1152,11 +1208,11 @@ interactions: cache-control: - no-cache content-length: - - '3915' + - '3908' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:59 GMT + - Tue, 10 May 2022 03:48:16 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml index 96af3bc2f78..32bf29cb4f3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:35:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:44:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:52 GMT + - Tue, 10 May 2022 03:44:36 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnhhfgkfqv-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestduebas4i5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "messageOfTheDay": "VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,39 +68,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1852' + - '1985' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnhhfgkfqv-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnhhfgkfqv-8ecadf-6ad6425e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnhhfgkfqv-8ecadf-6ad6425e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestduebas4i5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestduebas4i5-8ecadf-6d25cf44.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestduebas4i5-8ecadf-6d25cf44.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false,\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false,\n \ \"messageOfTheDay\": \"VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=\"\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -110,21 +112,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3495' + - '3674' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:56 GMT + - Tue, 10 May 2022 03:44:40 GMT expires: - '-1' pragma: @@ -154,14 +158,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -170,7 +174,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:25 GMT + - Tue, 10 May 2022 03:45:10 GMT expires: - '-1' pragma: @@ -202,14 +206,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +222,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:55 GMT + - Tue, 10 May 2022 03:45:40 GMT expires: - '-1' pragma: @@ -250,14 +254,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +270,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:26 GMT + - Tue, 10 May 2022 03:46:10 GMT expires: - '-1' pragma: @@ -298,14 +302,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +318,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:56 GMT + - Tue, 10 May 2022 03:46:40 GMT expires: - '-1' pragma: @@ -346,14 +350,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +366,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:25 GMT + - Tue, 10 May 2022 03:47:10 GMT expires: - '-1' pragma: @@ -394,14 +398,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +414,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:56 GMT + - Tue, 10 May 2022 03:47:41 GMT expires: - '-1' pragma: @@ -442,23 +446,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3498411-0bcf-427a-975a-d88443a26304?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\"\n }" + string: "{\n \"name\": \"118449e3-cf0b-7a42-975a-d88443a26304\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:44:40.8366666Z\",\n \"endTime\": + \"2022-05-10T03:47:58.244301Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:26 GMT + - Tue, 10 May 2022 03:48:11 GMT expires: - '-1' pragma: @@ -490,89 +495,40 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8689a97f-27ce-46e3-ae97-9c7ad4f4a218?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"7fa98986-ce27-e346-ae97-9c7ad4f4a218\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:35:56.1833333Z\",\n \"endTime\": - \"2022-04-14T04:39:44.0860887Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:39: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 --nodepool-name -c --ssh-key-value --message-of-the-day - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnhhfgkfqv-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnhhfgkfqv-8ecadf-6ad6425e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnhhfgkfqv-8ecadf-6ad6425e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestduebas4i5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestduebas4i5-8ecadf-6d25cf44.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestduebas4i5-8ecadf-6d25cf44.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false,\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false,\n \ \"messageOfTheDay\": \"VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=\"\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/46c99765-8951-437f-9473-e8ebc3a7f426\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0878bcad-936b-4c97-ae68-874a4d8ff8ed\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -590,11 +546,11 @@ interactions: cache-control: - no-cache content-length: - - '4148' + - '4141' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:56 GMT + - Tue, 10 May 2022 03:48:11 GMT expires: - '-1' pragma: @@ -626,10 +582,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -639,21 +595,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false,\n \"messageOfTheDay\": \"VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=\"\n \ }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1446' + - '1439' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:57 GMT + - Tue, 10 May 2022 03:48:12 GMT expires: - '-1' pragma: @@ -694,10 +650,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -707,23 +663,23 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false,\n \"messageOfTheDay\": \"VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1385' + - '1378' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:00 GMT + - Tue, 10 May 2022 03:48:15 GMT expires: - '-1' pragma: @@ -735,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -753,71 +709,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:40: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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --message-of-the-day - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:00 GMT + - Tue, 10 May 2022 03:48:45 GMT expires: - '-1' pragma: @@ -849,23 +757,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:30 GMT + - Tue, 10 May 2022 03:49:15 GMT expires: - '-1' pragma: @@ -897,23 +805,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:00 GMT + - Tue, 10 May 2022 03:49:45 GMT expires: - '-1' pragma: @@ -945,23 +853,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:31 GMT + - Tue, 10 May 2022 03:50:15 GMT expires: - '-1' pragma: @@ -993,23 +901,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:01 GMT + - Tue, 10 May 2022 03:50:45 GMT expires: - '-1' pragma: @@ -1041,23 +949,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:31 GMT + - Tue, 10 May 2022 03:51:15 GMT expires: - '-1' pragma: @@ -1089,24 +997,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dc219dd-a9d9-4292-90f7-01a530df91f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0bad6e9-a1ee-4095-903c-e047833fb3e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dd19c29d-d9a9-9242-90f7-01a530df91f8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:40:01.02Z\",\n \"endTime\": - \"2022-04-14T04:43:32.2645334Z\"\n }" + string: "{\n \"name\": \"e9d6bae0-eea1-9540-903c-e047833fb3e0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:48:15.6366666Z\",\n \"endTime\": + \"2022-05-10T03:51:46.1252683Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:01 GMT + - Tue, 10 May 2022 03:51:46 GMT expires: - '-1' pragma: @@ -1138,10 +1046,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --message-of-the-day User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1151,21 +1059,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false,\n \"messageOfTheDay\": \"VU5BVVRIT1JJWkVEIEFDQ0VTUyBUTyBUSElTIERFVklDRSBJUyBQUk9ISUJJVEVECgpZb3UgbXVzdCBoYXZlIGV4cGxpY2l0LCBhdXRob3JpemVkIHBlcm1pc3Npb24gdG8gYWNjZXNzIG9yIGNvbmZpZ3VyZSB0aGlzIGRldmljZS4gVW5hdXRob3JpemVkIGF0dGVtcHRzIGFuZCBhY3Rpb25zIHRvIGFjY2VzcyBvciB1c2UgdGhpcyBzeXN0ZW0gbWF5IHJlc3VsdCBpbiBjaXZpbCBhbmQvb3IgY3JpbWluYWwgcGVuYWx0aWVzLiBBbGwgYWN0aXZpdGllcyBwZXJmb3JtZWQgb24gdGhpcyBkZXZpY2UgYXJlIGxvZ2dlZCBhbmQgbW9uaXRvcmVkLgo=\"\n \ }\n }" headers: cache-control: - no-cache content-length: - - '1386' + - '1379' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:01 GMT + - Tue, 10 May 2022 03:51:46 GMT expires: - '-1' pragma: @@ -1199,26 +1107,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed22a7ae-51ba-44e4-8521-2f0cf91d0e88?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60751021-93b3-4045-823a-520dd1a493f1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:44:03 GMT + - Tue, 10 May 2022 03:51:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ed22a7ae-51ba-44e4-8521-2f0cf91d0e88?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/60751021-93b3-4045-823a-520dd1a493f1?api-version=2016-03-30 pragma: - no-cache server: @@ -1228,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml index 555e27d8336..df445faed92 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:38:54Z"},"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","date":"2022-05-10T03:46:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:38:55 GMT + - Tue, 10 May 2022 03:46:47 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestl237yn2zo-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5ekkodzq2-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "30m"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1543' + - '1676' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestl237yn2zo-8ecadf\",\n \"fqdn\": \"cliakstest-clitestl237yn2zo-8ecadf-09362bc5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestl237yn2zo-8ecadf-09362bc5.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5ekkodzq2-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5ekkodzq2-8ecadf-8dce74f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5ekkodzq2-8ecadf-8dce74f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -114,22 +116,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3249' + - '3428' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:58 GMT + - Tue, 10 May 2022 03:46:50 GMT expires: - '-1' pragma: @@ -141,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -160,14 +164,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +180,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:28 GMT + - Tue, 10 May 2022 03:47:20 GMT expires: - '-1' pragma: @@ -209,14 +213,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +229,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:59 GMT + - Tue, 10 May 2022 03:47:50 GMT expires: - '-1' pragma: @@ -258,14 +262,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +278,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:28 GMT + - Tue, 10 May 2022 03:48:20 GMT expires: - '-1' pragma: @@ -307,14 +311,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +327,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:59 GMT + - Tue, 10 May 2022 03:48:50 GMT expires: - '-1' pragma: @@ -356,14 +360,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +376,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:29 GMT + - Tue, 10 May 2022 03:49:20 GMT expires: - '-1' pragma: @@ -405,14 +409,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +425,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:59 GMT + - Tue, 10 May 2022 03:49:51 GMT expires: - '-1' pragma: @@ -454,15 +458,15 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3988b861-e5d3-4212-b0ad-22703d69c05a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c748057-8283-48f5-81b4-4731c1cfaa32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61b88839-d3e5-1242-b0ad-22703d69c05a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:38:58.9666666Z\",\n \"endTime\": - \"2022-04-14T04:42:26.9363957Z\"\n }" + string: "{\n \"name\": \"5780745c-8382-f548-81b4-4731c1cfaa32\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:46:50.8233333Z\",\n \"endTime\": + \"2022-05-10T03:50:14.5692035Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:29 GMT + - Tue, 10 May 2022 03:50:21 GMT expires: - '-1' pragma: @@ -504,32 +508,32 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestl237yn2zo-8ecadf\",\n \"fqdn\": \"cliakstest-clitestl237yn2zo-8ecadf-09362bc5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestl237yn2zo-8ecadf-09362bc5.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5ekkodzq2-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5ekkodzq2-8ecadf-8dce74f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5ekkodzq2-8ecadf-8dce74f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -540,7 +544,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6bc99acf-6800-4b16-b282-acfa26be939e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60782014-910a-426c-be19-339267f5db35\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -558,11 +562,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:30 GMT + - Tue, 10 May 2022 03:50:21 GMT expires: - '-1' pragma: @@ -596,26 +600,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42be530d-2886-49ce-aad9-4ea12a882d0a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8fca7b8-2300-47ff-8148-246c5bd7820a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:42:30 GMT + - Tue, 10 May 2022 03:50:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/42be530d-2886-49ce-aad9-4ea12a882d0a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a8fca7b8-2300-47ff-8148-246c5bd7820a?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml index 325d9e682df..c180f95dedc 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0 Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0 Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -54,7 +54,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:47 GMT + - Tue, 10 May 2022 03:44:08 GMT expires: - '-1' pragma: @@ -74,14 +74,14 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitestc5m7ahrch-8ecadf", + {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitest3dmitibne-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": @@ -89,7 +89,9 @@ interactions: "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}}' + "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -102,7 +104,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1674' + - '1807' Content-Type: - application/json ParameterSetName: @@ -110,10 +112,10 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -121,21 +123,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitestc5m7ahrch-8ecadf\",\n \"fqdn\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest3dmitibne-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 @@ -149,21 +151,24 @@ interactions: \ \"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 \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3243' + - '3422' content-type: - application/json date: - - Thu, 14 Apr 2022 04:36:53 GMT + - Tue, 10 May 2022 03:44:14 GMT expires: - '-1' pragma: @@ -175,7 +180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -197,23 +202,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:23 GMT + - Tue, 10 May 2022 03:44:44 GMT expires: - '-1' pragma: @@ -249,23 +256,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:53 GMT + - Tue, 10 May 2022 03:45:14 GMT expires: - '-1' pragma: @@ -301,23 +310,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:24 GMT + - Tue, 10 May 2022 03:45:45 GMT expires: - '-1' pragma: @@ -353,23 +364,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:54 GMT + - Tue, 10 May 2022 03:46:15 GMT expires: - '-1' pragma: @@ -405,23 +418,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:24 GMT + - Tue, 10 May 2022 03:46:45 GMT expires: - '-1' pragma: @@ -457,23 +472,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:54 GMT + - Tue, 10 May 2022 03:47:15 GMT expires: - '-1' pragma: @@ -509,23 +526,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:24 GMT + - Tue, 10 May 2022 03:47:45 GMT expires: - '-1' pragma: @@ -561,23 +580,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:55 GMT + - Tue, 10 May 2022 03:48:15 GMT expires: - '-1' pragma: @@ -613,23 +634,25 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:24 GMT + - Tue, 10 May 2022 03:48:46 GMT expires: - '-1' pragma: @@ -665,23 +688,26 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/014a95c1-a3fc-4c07-b4d0-d398b5b691b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\"\n }" + string: "{\n \"name\": \"c1954a01-fca3-074c-b4d0-d398b5b691b7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:44:14.82Z\",\n \"endTime\": + \"2022-05-10T03:49:02.7146246Z\",\n \"resourceGroup\": \"clitest000001\",\n + \ \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n + }" headers: cache-control: - no-cache content-length: - - '126' + - '299' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:55 GMT + - Tue, 10 May 2022 03:49:16 GMT expires: - '-1' pragma: @@ -717,63 +743,10 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/c26088ac-09da-4d26-8c8b-a3fa3cce656b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ac8860c2-da09-264d-8c8b-a3fa3cce656b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:36:53.7433333Z\",\n \"endTime\": - \"2022-04-14T04:42:09.9081977Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:42: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/AKS-EnableDualStack - 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -781,30 +754,30 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitestc5m7ahrch-8ecadf\",\n \"fqdn\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest3dmitibne-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\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_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8ae54747-4d9f-4ca2-a5e8-90d49f8ad472-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/15d503ed-caa7-46c5-885c-4ed200e0ccfd\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/50b19947-3276-4042-883f-3c18196f4de8-ipv6\"\n + 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/ff866d84-8c3b-4ded-a8d5-1174d096edf4-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/719e9f2e-c80f-459e-8007-b0b8e47d8a1d-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/9f3f869e-9e27-4e6a-8644-a95fd0843f92\"\n \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n @@ -815,19 +788,21 @@ interactions: {\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4378' + - '4557' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:25 GMT + - Tue, 10 May 2022 03:49:17 GMT expires: - '-1' pragma: @@ -859,10 +834,10 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -870,30 +845,30 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitestc5m7ahrch-8ecadf\",\n \"fqdn\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest3dmitibne-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\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_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8ae54747-4d9f-4ca2-a5e8-90d49f8ad472-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/15d503ed-caa7-46c5-885c-4ed200e0ccfd\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/50b19947-3276-4042-883f-3c18196f4de8-ipv6\"\n + 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/ff866d84-8c3b-4ded-a8d5-1174d096edf4-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/719e9f2e-c80f-459e-8007-b0b8e47d8a1d-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/9f3f869e-9e27-4e6a-8644-a95fd0843f92\"\n \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n @@ -904,19 +879,21 @@ interactions: {\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4378' + - '4557' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:26 GMT + - Tue, 10 May 2022 03:49:17 GMT expires: - '-1' pragma: @@ -937,30 +914,31 @@ interactions: - request: body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.23.5", "dnsPrefix": "cliakstest-clitestc5m7ahrch-8ecadf", "agentPoolProfiles": + "1.23.5", "dnsPrefix": "cliakstest-clitest3dmitibne-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": "1.23.5", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.23.5", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 4}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8ae54747-4d9f-4ca2-a5e8-90d49f8ad472-ipv6"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/15d503ed-caa7-46c5-885c-4ed200e0ccfd"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/50b19947-3276-4042-883f-3c18196f4de8-ipv6"}], + {"count": 1, "countIPv6": 4}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/ff866d84-8c3b-4ded-a8d5-1174d096edf4-ipv6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/719e9f2e-c80f-459e-8007-b0b8e47d8a1d-ipv6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/9f3f869e-9e27-4e6a-8644-a95fd0843f92"}], "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": "/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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -971,16 +949,16 @@ interactions: Connection: - keep-alive Content-Length: - - '3024' + - '3105' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -988,30 +966,30 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitestc5m7ahrch-8ecadf\",\n \"fqdn\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest3dmitibne-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\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_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8ae54747-4d9f-4ca2-a5e8-90d49f8ad472-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/15d503ed-caa7-46c5-885c-4ed200e0ccfd\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/50b19947-3276-4042-883f-3c18196f4de8-ipv6\"\n + 4\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/ff866d84-8c3b-4ded-a8d5-1174d096edf4-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/719e9f2e-c80f-459e-8007-b0b8e47d8a1d-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/9f3f869e-9e27-4e6a-8644-a95fd0843f92\"\n \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n @@ -1022,21 +1000,24 @@ interactions: {\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9d03c691-ab7d-4297-9bfd-57901fbc3e38?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d8ae0e2a-50a1-4910-b8b7-a4d95ecb394f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4376' + - '4558' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:29 GMT + - Tue, 10 May 2022 03:49:21 GMT expires: - '-1' pragma: @@ -1052,7 +1033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -1070,23 +1051,25 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9d03c691-ab7d-4297-9bfd-57901fbc3e38?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d8ae0e2a-50a1-4910-b8b7-a4d95ecb394f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"91c6039d-7dab-9742-9bfd-57901fbc3e38\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:29.28Z\"\n }" + string: "{\n \"name\": \"2a0eaed8-a150-1049-b8b7-a4d95ecb394f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:49:20.87Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:00 GMT + - Tue, 10 May 2022 03:49:51 GMT expires: - '-1' pragma: @@ -1118,23 +1101,25 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9d03c691-ab7d-4297-9bfd-57901fbc3e38?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d8ae0e2a-50a1-4910-b8b7-a4d95ecb394f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"91c6039d-7dab-9742-9bfd-57901fbc3e38\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:29.28Z\"\n }" + string: "{\n \"name\": \"2a0eaed8-a150-1049-b8b7-a4d95ecb394f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:49:20.87Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:30 GMT + - Tue, 10 May 2022 03:50:21 GMT expires: - '-1' pragma: @@ -1166,23 +1151,25 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9d03c691-ab7d-4297-9bfd-57901fbc3e38?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d8ae0e2a-50a1-4910-b8b7-a4d95ecb394f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"91c6039d-7dab-9742-9bfd-57901fbc3e38\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:29.28Z\"\n }" + string: "{\n \"name\": \"2a0eaed8-a150-1049-b8b7-a4d95ecb394f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:49:20.87Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:59 GMT + - Tue, 10 May 2022 03:50:51 GMT expires: - '-1' pragma: @@ -1214,24 +1201,26 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9d03c691-ab7d-4297-9bfd-57901fbc3e38?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d8ae0e2a-50a1-4910-b8b7-a4d95ecb394f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"91c6039d-7dab-9742-9bfd-57901fbc3e38\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:42:29.28Z\",\n \"endTime\": - \"2022-04-14T04:44:15.5440994Z\"\n }" + string: "{\n \"name\": \"2a0eaed8-a150-1049-b8b7-a4d95ecb394f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:49:20.87Z\",\n \"endTime\": + \"2022-05-10T03:51:05.5054766Z\",\n \"resourceGroup\": \"clitest000001\",\n + \ \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n + }" headers: cache-control: - no-cache content-length: - - '165' + - '299' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:29 GMT + - Tue, 10 May 2022 03:51:21 GMT expires: - '-1' pragma: @@ -1263,10 +1252,10 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1274,32 +1263,32 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitestc5m7ahrch-8ecadf\",\n \"fqdn\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc5m7ahrch-8ecadf-1e540f96.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest3dmitibne-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3dmitibne-8ecadf-bb81d2d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\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_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8ae54747-4d9f-4ca2-a5e8-90d49f8ad472-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/a75be326-7133-406b-8c01-1668d0d58db2-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b8afc142-8129-4ec1-858d-73f2df144eb5-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/15d503ed-caa7-46c5-885c-4ed200e0ccfd\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/50b19947-3276-4042-883f-3c18196f4de8-ipv6\"\n + 4\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/9f3f869e-9e27-4e6a-8644-a95fd0843f92\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/719e9f2e-c80f-459e-8007-b0b8e47d8a1d-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/ff866d84-8c3b-4ded-a8d5-1174d096edf4-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/34edcdf4-a8b8-449a-828b-7fb68bbfe991-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/e763449b-9806-4b71-b40e-e3d661ff03d9-ipv6\"\n \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n @@ -1310,19 +1299,22 @@ interactions: {\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4848' + - '5030' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:30 GMT + - Tue, 10 May 2022 03:51:22 GMT expires: - '-1' pragma: @@ -1356,26 +1348,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cb8a1e75-bf4b-4345-9640-4a8afcdd2783?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2126a62e-b49a-46b2-acf3-0574a0c4b421?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:44:32 GMT + - Tue, 10 May 2022 03:51:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/cb8a1e75-bf4b-4345-9640-4a8afcdd2783?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/2126a62e-b49a-46b2-acf3-0574a0c4b421?api-version=2016-03-30 pragma: - no-cache server: @@ -1385,7 +1377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml index f1ca876cac0..ca502691882 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:37:21Z"},"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","date":"2022-05-10T03:46:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:21 GMT + - Tue, 10 May 2022 03:46:13 GMT expires: - '-1' pragma: @@ -60,15 +60,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"b141033a-d9f1-4516-b8a7-9112832b537c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"27f1deee-45a9-472e-acc9-01ca333ddd09\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a06940e6-7f5c-4d47-ade6-2acfe0399606\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"5869be9e-a4e5-41d3-af9a-06f5cac51817\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -77,7 +77,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9003163c-a1f9-4bcb-9f7b-9da03af25534?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6c774e2a-32a0-46f0-9fa9-8bebf2bfba78?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:21 GMT + - Tue, 10 May 2022 03:46:13 GMT expires: - '-1' pragma: @@ -98,9 +98,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b80449a-02bc-43cb-aa75-ed32909b1f2e + - dadbbaf4-e634-4218-a8a7-52b0ee320de1 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -118,9 +118,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/9003163c-a1f9-4bcb-9f7b-9da03af25534?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6c774e2a-32a0-46f0-9fa9-8bebf2bfba78?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -132,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:22 GMT + - Tue, 10 May 2022 03:46:14 GMT expires: - '-1' pragma: @@ -149,7 +149,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6aee01ea-7750-44bd-a876-273b4d53b8e2 + - f2d44592-952c-4604-a121-4e6fd1fc34b7 status: code: 200 message: OK @@ -167,16 +167,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"e0be45b1-be51-488b-8316-1159a52d29cc\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0fe4850a-e335-46db-ac41-f57da8f31fe7\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a06940e6-7f5c-4d47-ade6-2acfe0399606\",\r\n \"ipAddress\": - \"20.94.203.168\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"5869be9e-a4e5-41d3-af9a-06f5cac51817\",\r\n \"ipAddress\": + \"20.29.189.125\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -188,9 +188,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:22 GMT + - Tue, 10 May 2022 03:46:14 GMT etag: - - W/"e0be45b1-be51-488b-8316-1159a52d29cc" + - W/"0fe4850a-e335-46db-ac41-f57da8f31fe7" expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a0b8b94e-947d-480e-abf9-fc98c86018e3 + - 6e13821a-c69b-4d83-b89f-0724d626fb7c status: code: 200 message: OK @@ -225,16 +225,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"e0be45b1-be51-488b-8316-1159a52d29cc\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0fe4850a-e335-46db-ac41-f57da8f31fe7\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a06940e6-7f5c-4d47-ade6-2acfe0399606\",\r\n \"ipAddress\": - \"20.94.203.168\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"5869be9e-a4e5-41d3-af9a-06f5cac51817\",\r\n \"ipAddress\": + \"20.29.189.125\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -246,9 +246,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:24 GMT + - Tue, 10 May 2022 03:46:16 GMT etag: - - W/"e0be45b1-be51-488b-8316-1159a52d29cc" + - W/"0fe4850a-e335-46db-ac41-f57da8f31fe7" expires: - '-1' pragma: @@ -265,7 +265,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7e844ef7-fc1e-433c-837c-ae1ed4850736 + - 7d07d379-fbb8-47cc-a861-0a62e6981920 status: code: 200 message: OK @@ -283,12 +283,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:37:21Z"},"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","date":"2022-05-10T03:46:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:23 GMT + - Tue, 10 May 2022 03:46:15 GMT expires: - '-1' pragma: @@ -330,15 +330,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n - \ \"etag\": \"W/\\\"6352d1b0-53a7-450f-a65b-abf5df8a9e41\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"138767a9-3d2a-422c-8644-33ee8741f512\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"48e92ef4-fdfe-4471-bd86-e94f18e35b63\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"c5c5e220-cc1d-4fe3-ae32-fcc29c823a84\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -347,7 +347,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a85e2127-9e52-4971-a2da-7dd972737214?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/33bcb8f2-5f56-4a9d-8a24-47428cf40d5d?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -355,7 +355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:25 GMT + - Tue, 10 May 2022 03:46:15 GMT expires: - '-1' pragma: @@ -368,9 +368,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4337a692-cb28-45ae-b97d-40460def75f5 + - e79c8d34-c12c-4929-98cc-aefc0e8a3335 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -388,9 +388,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/a85e2127-9e52-4971-a2da-7dd972737214?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/33bcb8f2-5f56-4a9d-8a24-47428cf40d5d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:26 GMT + - Tue, 10 May 2022 03:46:16 GMT expires: - '-1' pragma: @@ -419,7 +419,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fffb8b63-6826-4268-bcb4-32e817db065a + - 8ed21f25-8ae9-4674-b5f1-8886ed946c7b status: code: 200 message: OK @@ -437,16 +437,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n - \ \"etag\": \"W/\\\"289f711c-6ce2-42e8-8897-0ce43b6bdfea\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4402d056-42bb-4623-a168-c14f650cdcd2\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"48e92ef4-fdfe-4471-bd86-e94f18e35b63\",\r\n \"ipAddress\": - \"20.112.118.43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"c5c5e220-cc1d-4fe3-ae32-fcc29c823a84\",\r\n \"ipAddress\": + \"20.29.189.136\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -458,9 +458,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:26 GMT + - Tue, 10 May 2022 03:46:16 GMT etag: - - W/"289f711c-6ce2-42e8-8897-0ce43b6bdfea" + - W/"4402d056-42bb-4623-a168-c14f650cdcd2" expires: - '-1' pragma: @@ -477,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f97d5817-0596-4aec-ae07-f468b74c32b5 + - 571e6c9a-e8d6-4150-afe0-5b59383726af status: code: 200 message: OK @@ -495,16 +495,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n - \ \"etag\": \"W/\\\"289f711c-6ce2-42e8-8897-0ce43b6bdfea\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4402d056-42bb-4623-a168-c14f650cdcd2\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"48e92ef4-fdfe-4471-bd86-e94f18e35b63\",\r\n \"ipAddress\": - \"20.112.118.43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"c5c5e220-cc1d-4fe3-ae32-fcc29c823a84\",\r\n \"ipAddress\": + \"20.29.189.136\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -516,9 +516,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:37:27 GMT + - Tue, 10 May 2022 03:46:17 GMT etag: - - W/"289f711c-6ce2-42e8-8897-0ce43b6bdfea" + - W/"4402d056-42bb-4623-a168-c14f650cdcd2" expires: - '-1' pragma: @@ -535,27 +535,28 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5074120-a7c6-4a5c-b12e-5e3a825da8f4 + - e865b4dc-8769-4d0f-a755-38e273678e55 status: code: 200 message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvc2al7kxt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestea5fehf4u-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}]}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -566,38 +567,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1688' + - '1821' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestvc2al7kxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestea5fehf4u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -611,21 +612,24 @@ interactions: \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3307' + - '3486' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:29 GMT + - Tue, 10 May 2022 03:46:21 GMT expires: - '-1' pragma: @@ -637,7 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -655,23 +659,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:37:59 GMT + - Tue, 10 May 2022 03:46:51 GMT expires: - '-1' pragma: @@ -703,23 +707,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:38:30 GMT + - Tue, 10 May 2022 03:47:21 GMT expires: - '-1' pragma: @@ -751,23 +755,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:00 GMT + - Tue, 10 May 2022 03:47:51 GMT expires: - '-1' pragma: @@ -799,23 +803,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:29 GMT + - Tue, 10 May 2022 03:48:22 GMT expires: - '-1' pragma: @@ -847,23 +851,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:00 GMT + - Tue, 10 May 2022 03:48:52 GMT expires: - '-1' pragma: @@ -895,23 +899,23 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:30 GMT + - Tue, 10 May 2022 03:49:22 GMT expires: - '-1' pragma: @@ -943,24 +947,24 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91d9119a-159f-4de8-9f22-b9d5391c1051?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5b4237-a198-4951-9f65-9c7149876ad8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a11d991-9f15-e84d-9f22-b9d5391c1051\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:37:30.12Z\",\n \"endTime\": - \"2022-04-14T04:40:48.0826247Z\"\n }" + string: "{\n \"name\": \"37425b8d-98a1-5149-9f65-9c7149876ad8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:46:21.8366666Z\",\n \"endTime\": + \"2022-05-10T03:49:41.5023277Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:59 GMT + - Tue, 10 May 2022 03:49:52 GMT expires: - '-1' pragma: @@ -992,32 +996,32 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestvc2al7kxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestea5fehf4u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -1044,11 +1048,11 @@ interactions: cache-control: - no-cache content-length: - - '3912' + - '3905' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:00 GMT + - Tue, 10 May 2022 03:49:52 GMT expires: - '-1' pragma: @@ -1080,32 +1084,32 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestvc2al7kxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestea5fehf4u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -1132,11 +1136,11 @@ interactions: cache-control: - no-cache content-length: - - '3912' + - '3905' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:01 GMT + - Tue, 10 May 2022 03:49:53 GMT expires: - '-1' pragma: @@ -1156,15 +1160,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestvc2al7kxt-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestea5fehf4u-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": @@ -1177,7 +1181,8 @@ interactions: "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1188,38 +1193,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2601' + - '2682' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestvc2al7kxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestea5fehf4u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -1238,21 +1243,24 @@ interactions: {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dfa323d-bb60-4344-8a59-0252a25e96f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82f3f58b-4e42-4c76-94f7-c2d2055a1235?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3910' + - '4092' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:03 GMT + - Tue, 10 May 2022 03:49:56 GMT expires: - '-1' pragma: @@ -1268,7 +1276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -1286,14 +1294,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dfa323d-bb60-4344-8a59-0252a25e96f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82f3f58b-4e42-4c76-94f7-c2d2055a1235?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3d32fa8d-60bb-4443-8a59-0252a25e96f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:04.28Z\"\n }" + string: "{\n \"name\": \"8bf5f382-424e-764c-94f7-c2d2055a1235\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:49:56.84Z\"\n }" headers: cache-control: - no-cache @@ -1302,7 +1310,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:33 GMT + - Tue, 10 May 2022 03:50:26 GMT expires: - '-1' pragma: @@ -1334,14 +1342,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dfa323d-bb60-4344-8a59-0252a25e96f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82f3f58b-4e42-4c76-94f7-c2d2055a1235?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3d32fa8d-60bb-4443-8a59-0252a25e96f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:04.28Z\"\n }" + string: "{\n \"name\": \"8bf5f382-424e-764c-94f7-c2d2055a1235\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:49:56.84Z\"\n }" headers: cache-control: - no-cache @@ -1350,7 +1358,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:04 GMT + - Tue, 10 May 2022 03:50:56 GMT expires: - '-1' pragma: @@ -1382,15 +1390,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dfa323d-bb60-4344-8a59-0252a25e96f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82f3f58b-4e42-4c76-94f7-c2d2055a1235?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3d32fa8d-60bb-4443-8a59-0252a25e96f8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:41:04.28Z\",\n \"endTime\": - \"2022-04-14T04:42:27.6724287Z\"\n }" + string: "{\n \"name\": \"8bf5f382-424e-764c-94f7-c2d2055a1235\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:49:56.84Z\",\n \"endTime\": + \"2022-05-10T03:51:19.8198279Z\"\n }" headers: cache-control: - no-cache @@ -1399,7 +1407,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:34 GMT + - Tue, 10 May 2022 03:51:26 GMT expires: - '-1' pragma: @@ -1431,32 +1439,32 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestvc2al7kxt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestvc2al7kxt-8ecadf-cf81052a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestea5fehf4u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestea5fehf4u-8ecadf-1e0c0470.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -1483,11 +1491,11 @@ interactions: cache-control: - no-cache content-length: - - '3912' + - '3905' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:34 GMT + - Tue, 10 May 2022 03:51:27 GMT expires: - '-1' pragma: @@ -1521,26 +1529,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0aade0ab-86de-4751-a81f-3b38f3c93e00?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee7b3622-5537-400b-92a0-ef25ca743aeb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:42:35 GMT + - Tue, 10 May 2022 03:51:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0aade0ab-86de-4751-a81f-3b38f3c93e00?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ee7b3622-5537-400b-92a0-ef25ca743aeb?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml index 81e76d8daaf..df08dc24e5c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml @@ -14,13 +14,12 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.10.3 - (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-05-06T05:31:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T06:28:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -29,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 06 May 2022 05:31:20 GMT + - Tue, 10 May 2022 06:28:42 GMT expires: - '-1' pragma: @@ -44,22 +43,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3yttlvvp5-8ecadf", + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvrdjqcnez-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "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, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": - false}, "fileCSIDriver": {"enabled": false}, "snapshotController": {"enabled": - false}}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": false}, "fileCSIDriver": {"enabled": false}, "snapshotController": + {"enabled": false}}}}' headers: Accept: - application/json @@ -70,72 +69,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1890' + - '1561' 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.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ - ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ - ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"\ - loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \ - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n\ - \ \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ - : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ - : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n\ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + 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.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n + \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": + {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3599' + - '3263' content-type: - application/json date: - - Fri, 06 May 2022 05:31:33 GMT + - Tue, 10 May 2022 06:28:48 GMT expires: - '-1' pragma: @@ -166,72 +161,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Fri, 06 May 2022 05:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver - --disable-snapshot-controller - User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:32:34 GMT + - Tue, 10 May 2022 06:29:18 GMT expires: - '-1' pragma: @@ -264,23 +210,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:33:05 GMT + - Tue, 10 May 2022 06:29:48 GMT expires: - '-1' pragma: @@ -313,23 +259,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:33:34 GMT + - Tue, 10 May 2022 06:30:19 GMT expires: - '-1' pragma: @@ -362,23 +308,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:34:05 GMT + - Tue, 10 May 2022 06:30:49 GMT expires: - '-1' pragma: @@ -411,23 +357,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:34:35 GMT + - Tue, 10 May 2022 06:31:19 GMT expires: - '-1' pragma: @@ -460,23 +406,23 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 06 May 2022 05:35:06 GMT + - Tue, 10 May 2022 06:31:49 GMT expires: - '-1' pragma: @@ -509,24 +455,24 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a9f412ca-c598-4b1a-8fa5-17a19d4c9d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c51bbe14-8b57-4483-b496-e48e57ffa8c6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca12f4a9-98c5-1a4b-8fa5-17a19d4c9d25\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-06T05:31:32.34Z\",\n \"endTime\"\ - : \"2022-05-06T05:35:10.723286Z\"\n }" + string: "{\n \"name\": \"14be1bc5-578b-8344-b496-e48e57ffa8c6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:28:48.8633333Z\",\n \"endTime\": + \"2022-05-10T06:32:13.6737264Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Fri, 06 May 2022 05:35:36 GMT + - Tue, 10 May 2022 06:32:19 GMT expires: - '-1' pragma: @@ -559,68 +505,64 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n\ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + 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.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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\": + false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n + \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": + {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4264' + - '3928' content-type: - application/json date: - - Fri, 06 May 2022 05:35:37 GMT + - Tue, 10 May 2022 06:32:19 GMT expires: - '-1' pragma: @@ -652,68 +594,64 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n\ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + 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.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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\": + false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n + \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": + {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4264' + - '3928' content-type: - application/json date: - - Fri, 06 May 2022 05:35:39 GMT + - Tue, 10 May 2022 06:32:20 GMT expires: - '-1' pragma: @@ -732,26 +670,26 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3yttlvvp5-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestvrdjqcnez-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": "1.22.6", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", "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"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", "enableRBAC": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc"}]}, "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", + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -766,76 +704,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2943' + - '2607' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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 \ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5b2e2e74-13a1-4ba5-87c0-6299a5847023?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c630125d-1dab-4a8c-ad55-5c6248b98ac3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4259' + - '3923' content-type: - application/json date: - - Fri, 06 May 2022 05:35:47 GMT + - Tue, 10 May 2022 06:32:23 GMT expires: - '-1' pragma: @@ -869,14 +802,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/5b2e2e74-13a1-4ba5-87c0-6299a5847023?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c630125d-1dab-4a8c-ad55-5c6248b98ac3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"742e2e5b-a113-a54b-87c0-6299a5847023\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:35:44.0933333Z\"\n }" + string: "{\n \"name\": \"5d1230c6-ab1d-8c4a-ad55-5c6248b98ac3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:32:23.6666666Z\"\n }" headers: cache-control: - no-cache @@ -885,7 +818,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:36:17 GMT + - Tue, 10 May 2022 06:32:54 GMT expires: - '-1' pragma: @@ -917,14 +850,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/5b2e2e74-13a1-4ba5-87c0-6299a5847023?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c630125d-1dab-4a8c-ad55-5c6248b98ac3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"742e2e5b-a113-a54b-87c0-6299a5847023\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:35:44.0933333Z\"\n }" + string: "{\n \"name\": \"5d1230c6-ab1d-8c4a-ad55-5c6248b98ac3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:32:23.6666666Z\"\n }" headers: cache-control: - no-cache @@ -933,7 +866,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:36:48 GMT + - Tue, 10 May 2022 06:33:24 GMT expires: - '-1' pragma: @@ -965,15 +898,15 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/5b2e2e74-13a1-4ba5-87c0-6299a5847023?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c630125d-1dab-4a8c-ad55-5c6248b98ac3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"742e2e5b-a113-a54b-87c0-6299a5847023\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-06T05:35:44.0933333Z\",\n \"\ - endTime\": \"2022-05-06T05:36:57.4436823Z\"\n }" + string: "{\n \"name\": \"5d1230c6-ab1d-8c4a-ad55-5c6248b98ac3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:32:23.6666666Z\",\n \"endTime\": + \"2022-05-10T06:33:42.1621262Z\"\n }" headers: cache-control: - no-cache @@ -982,7 +915,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:37:18 GMT + - Tue, 10 May 2022 06:33:54 GMT expires: - '-1' pragma: @@ -1014,68 +947,63 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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 \ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4261' + - '3925' content-type: - application/json date: - - Fri, 06 May 2022 05:37:19 GMT + - Tue, 10 May 2022 06:33:54 GMT expires: - '-1' pragma: @@ -1107,68 +1035,63 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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 \ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4261' + - '3925' content-type: - application/json date: - - Fri, 06 May 2022 05:37:21 GMT + - Tue, 10 May 2022 06:33:56 GMT expires: - '-1' pragma: @@ -1187,26 +1110,26 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3yttlvvp5-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestvrdjqcnez-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": "1.22.6", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", "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"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", "enableRBAC": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc"}]}, "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", + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": false}, "fileCSIDriver": {"enabled": false}, "snapshotController": @@ -1221,76 +1144,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2946' + - '2610' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n\ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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\": + false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n + \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": + {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a193b25c-98f9-4cfd-b228-5d0d95f7ea6e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/858f6324-520d-4777-9157-b3f9bfb8762b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4262' + - '3926' content-type: - application/json date: - - Fri, 06 May 2022 05:37:30 GMT + - Tue, 10 May 2022 06:34:00 GMT expires: - '-1' pragma: @@ -1324,14 +1243,14 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a193b25c-98f9-4cfd-b228-5d0d95f7ea6e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/858f6324-520d-4777-9157-b3f9bfb8762b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5cb293a1-f998-fd4c-b228-5d0d95f7ea6e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:37:27.2933333Z\"\n }" + string: "{\n \"name\": \"24638f85-0d52-7747-9157-b3f9bfb8762b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:33:59.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1340,7 +1259,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:38:01 GMT + - Tue, 10 May 2022 06:34:30 GMT expires: - '-1' pragma: @@ -1372,14 +1291,14 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a193b25c-98f9-4cfd-b228-5d0d95f7ea6e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/858f6324-520d-4777-9157-b3f9bfb8762b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5cb293a1-f998-fd4c-b228-5d0d95f7ea6e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:37:27.2933333Z\"\n }" + string: "{\n \"name\": \"24638f85-0d52-7747-9157-b3f9bfb8762b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:33:59.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1388,7 +1307,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:38:31 GMT + - Tue, 10 May 2022 06:35:00 GMT expires: - '-1' pragma: @@ -1420,24 +1339,24 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/a193b25c-98f9-4cfd-b228-5d0d95f7ea6e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/858f6324-520d-4777-9157-b3f9bfb8762b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5cb293a1-f998-fd4c-b228-5d0d95f7ea6e\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-06T05:37:27.2933333Z\",\n \"\ - endTime\": \"2022-05-06T05:38:34.871743Z\"\n }" + string: "{\n \"name\": \"24638f85-0d52-7747-9157-b3f9bfb8762b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:33:59.9466666Z\",\n \"endTime\": + \"2022-05-10T06:35:17.4566512Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Fri, 06 May 2022 05:39:01 GMT + - Tue, 10 May 2022 06:35:30 GMT expires: - '-1' pragma: @@ -1469,68 +1388,64 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3yttlvvp5-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3yttlvvp5-8ecadf-9f0f5616.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/74f941db-b2c9-4c6e-b6f6-b7ad602a37e7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n\ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + 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.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestvrdjqcnez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvrdjqcnez-8ecadf-4f4ce79a.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDEe56eTep/AWMoACmjb2NrYC2DmbvyWRpty2Tn96oSFJ42iB0akdd5rbeA/u5eoVRKRg+obg/4Hr7RFW7qp0Qw8fBDZgk2BC+oDCVcQzfTLJkA13tA3C/Wg3n9rTtp0jYvbXrhiHzT/HjSod97teq6DzGXntqQJZV+H/5srMFznPdzyyVyAGMQnDdWDqgr1+gS7zaEoCM7fhLZZgQkPj6B1QIN5ZTpJsfoUO624GobVVgSAiI/ovl1iYuxw0ZcpzjrWHZ7HWRwfpHO8EfIitaaduNThSZLzC2Bqmprb4f8Rx5TtPeE/7F+B+kcZMIyQyMHcca/wB3za1ta2NfWzrhP + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e71af836-ff2e-44f4-94fe-bd48776a33dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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\": + false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n + \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": + {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4264' + - '3928' content-type: - application/json date: - - Fri, 06 May 2022 05:39:02 GMT + - Tue, 10 May 2022 06:35:30 GMT expires: - '-1' pragma: @@ -1564,26 +1479,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f777f386-c9d6-47b1-ae07-7b1ba3464ff0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/aaecdb26-1b47-4275-9d32-984b0e51b1e1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 06 May 2022 05:39:04 GMT + - Tue, 10 May 2022 06:35:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/f777f386-c9d6-47b1-ae07-7b1ba3464ff0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/aaecdb26-1b47-4275-9d32-984b0e51b1e1?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml index 63301087d9b..238a06cdd98 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml +++ b/src/aks-preview/azext_aks_preview/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.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:33:49Z"},"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","date":"2022-05-10T03:46:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:49 GMT + - Tue, 10 May 2022 03:46:52 GMT expires: - '-1' pragma: @@ -62,21 +62,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"ec74a5dc-7db7-46f7-8389-0ba3c8e6b8b6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"28052290-b936-4201-b056-d3fcdcd4d88d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7c60105d-f548-4571-ae0a-7b8c9c87b268\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b38a2b14-1bf7-4920-91ab-27776dd519f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"ec74a5dc-7db7-46f7-8389-0ba3c8e6b8b6\\\"\",\r\n + \ \"etag\": \"W/\\\"28052290-b936-4201-b056-d3fcdcd4d88d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -87,7 +87,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02895541-2b9a-4012-8d0a-25d0d6bb9071?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9e9c6a67-dec5-46bd-a06c-d9a707820582?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:49 GMT + - Tue, 10 May 2022 03:46:52 GMT expires: - '-1' pragma: @@ -108,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7376a03a-f54d-4cf0-9aaa-962241bf60d8 + - 27573894-370c-44f7-9387-cccdd100f583 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -128,9 +128,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/02895541-2b9a-4012-8d0a-25d0d6bb9071?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9e9c6a67-dec5-46bd-a06c-d9a707820582?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:52 GMT + - Tue, 10 May 2022 03:46:55 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 640553c8-e454-4b47-a72c-8669f9897f22 + - 96fc2e42-435f-4f84-a6f8-604924aafbf1 status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"df7efd97-6b2f-4c54-b7a8-1374c6c7daec\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7c60105d-f548-4571-ae0a-7b8c9c87b268\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b38a2b14-1bf7-4920-91ab-27776dd519f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"df7efd97-6b2f-4c54-b7a8-1374c6c7daec\\\"\",\r\n + \ \"etag\": \"W/\\\"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -206,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:53 GMT + - Tue, 10 May 2022 03:46:55 GMT etag: - - W/"df7efd97-6b2f-4c54-b7a8-1374c6c7daec" + - W/"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95ee4e4b-2a9c-4f5c-a24c-c2050b0f4d8e + - 10c5308d-d329-4b7d-939d-a2d6388ece41 status: code: 200 message: OK @@ -243,21 +243,21 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"df7efd97-6b2f-4c54-b7a8-1374c6c7daec\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7c60105d-f548-4571-ae0a-7b8c9c87b268\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b38a2b14-1bf7-4920-91ab-27776dd519f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"df7efd97-6b2f-4c54-b7a8-1374c6c7daec\\\"\",\r\n + \ \"etag\": \"W/\\\"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -272,9 +272,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:53 GMT + - Tue, 10 May 2022 03:46:56 GMT etag: - - W/"df7efd97-6b2f-4c54-b7a8-1374c6c7daec" + - W/"fc1ac5a9-07e0-4b1d-8701-7cd7e1e65251" expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a81aadd-0a58-470b-9f25-cd08de5ff180 + - f4743b39-c780-4ee1-85e0-7971efa2e561 status: code: 200 message: OK @@ -321,28 +321,28 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"962ae6bc-1ea3-4466-94b6-b229f0f24497\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8369654a-ce41-4ebe-b0b6-48dcbc3ecc0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7c60105d-f548-4571-ae0a-7b8c9c87b268\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b38a2b14-1bf7-4920-91ab-27776dd519f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"962ae6bc-1ea3-4466-94b6-b229f0f24497\\\"\",\r\n + \ \"etag\": \"W/\\\"8369654a-ce41-4ebe-b0b6-48dcbc3ecc0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\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/\\\"962ae6bc-1ea3-4466-94b6-b229f0f24497\\\"\",\r\n + \ \"etag\": \"W/\\\"8369654a-ce41-4ebe-b0b6-48dcbc3ecc0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.42.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/264f6958-7219-4041-ac61-ee4dbe3fd2e2?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc88cf74-defa-4277-8c3c-3e79bddffff1?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:55 GMT + - Tue, 10 May 2022 03:46:56 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 974a10b5-5fe2-4481-8ae5-90a7d3d7dc52 + - 14db3c63-884c-408d-894b-2b1c9facaf5d x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -398,9 +398,9 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/264f6958-7219-4041-ac61-ee4dbe3fd2e2?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc88cf74-defa-4277-8c3c-3e79bddffff1?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:46:59 GMT expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c130396b-3639-4f0e-b85e-99911d16b439 + - 626e2d3d-b2bc-4d55-bbb2-5d8f2b6629a3 status: code: 200 message: OK @@ -447,28 +447,28 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"49721d1c-fc42-42d4-8e23-741381200462\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f189d409-fa71-4ab6-80e4-cf8663f1c0ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7c60105d-f548-4571-ae0a-7b8c9c87b268\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"b38a2b14-1bf7-4920-91ab-27776dd519f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"49721d1c-fc42-42d4-8e23-741381200462\\\"\",\r\n + \ \"etag\": \"W/\\\"f189d409-fa71-4ab6-80e4-cf8663f1c0ea\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\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/\\\"49721d1c-fc42-42d4-8e23-741381200462\\\"\",\r\n + \ \"etag\": \"W/\\\"f189d409-fa71-4ab6-80e4-cf8663f1c0ea\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.42.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -483,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:47:00 GMT etag: - - W/"49721d1c-fc42-42d4-8e23-741381200462" + - W/"f189d409-fa71-4ab6-80e4-cf8663f1c0ea" expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4171bebf-501f-4c5f-95a0-5e807d2cfb86 + - f4ce93f1-c403-4aaf-a476-2b8b60463516 status: code: 200 message: OK @@ -520,13 +520,13 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-05-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/\\\"49721d1c-fc42-42d4-8e23-741381200462\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"f189d409-fa71-4ab6-80e4-cf8663f1c0ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.42.1.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -539,9 +539,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:47:00 GMT etag: - - W/"49721d1c-fc42-42d4-8e23-741381200462" + - W/"f189d409-fa71-4ab6-80e4-cf8663f1c0ea" expires: - '-1' pragma: @@ -558,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29f900d5-9c02-43be-8963-a1440e1e254a + - 9f78f553-f0c6-4f8b-be4c-243281f46648 status: code: 200 message: OK @@ -577,12 +577,12 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:33:49Z"},"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","date":"2022-05-10T03:46:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -591,7 +591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:47:00 GMT expires: - '-1' pragma: @@ -620,13 +620,13 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202204040\",\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.202204040\"\r\n + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202205050\",\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.202205050\"\r\n \ }\r\n]" headers: cache-control: @@ -636,7 +636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:47:00 GMT expires: - '-1' pragma: @@ -672,9 +672,9 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1022-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.202204040?api-version=2021-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.202205050?api-version=2021-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -683,19 +683,22 @@ interactions: {\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 \"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.202204040\",\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.202204040\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\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.202205050\",\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.202205050\"\r\n}" headers: cache-control: - no-cache content-length: - - '892' + - '1062' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:58 GMT + - Tue, 10 May 2022 03:47:01 GMT expires: - '-1' pragma: @@ -731,12 +734,12 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2021-04-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"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e"},{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"}],"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 @@ -776,12 +779,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"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 @@ -801,12 +804,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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 @@ -826,12 +829,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"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 @@ -971,12 +974,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"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 @@ -1074,12 +1077,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"SupportsTags, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1585,12 +1588,12 @@ interactions: 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":"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":[]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]}],"capabilities":"SupportsTags, + East","zones":["3","1","2"]},{"location":"Qatar Central","zones":[]},{"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":[]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"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 @@ -1725,8 +1728,8 @@ interactions: South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden - Central","Qatar Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"SupportsExtension"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central","Qatar Central"],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"SupportsExtension"},{"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 @@ -1736,7 +1739,7 @@ interactions: South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden - Central","Qatar Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central","Qatar Central"],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-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 @@ -1746,7 +1749,7 @@ interactions: South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden - Central","Qatar Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + Central","Qatar Central"],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"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 @@ -1756,7 +1759,7 @@ interactions: 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","East US 2 EUAP","Central US EUAP","Jio - India Central","Sweden South","Qatar Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + India Central","Sweden South","Qatar Central"],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-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 @@ -1766,7 +1769,7 @@ interactions: 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","East US 2 EUAP","Central US EUAP","Jio - India Central","Sweden South","Qatar Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 + India Central","Sweden South","Qatar Central"],"apiVersions":["2022-04-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1817,11 +1820,11 @@ interactions: cache-control: - no-cache content-length: - - '150800' + - '151041' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:34:00 GMT + - Tue, 10 May 2022 03:47:02 GMT expires: - '-1' pragma: @@ -1850,13 +1853,13 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/\\\"49721d1c-fc42-42d4-8e23-741381200462\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"f189d409-fa71-4ab6-80e4-cf8663f1c0ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.42.3.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1869,9 +1872,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:33:59 GMT + - Tue, 10 May 2022 03:47:03 GMT etag: - - W/"49721d1c-fc42-42d4-8e23-741381200462" + - W/"f189d409-fa71-4ab6-80e4-cf8663f1c0ea" expires: - '-1' pragma: @@ -1888,7 +1891,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef81533b-21f3-45b9-8728-f0376459f338 + - ad5b19d0-b827-449a-80e1-6756b4a6647b status: code: 200 message: OK @@ -1916,7 +1919,7 @@ interactions: "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 AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: @@ -1936,23 +1939,23 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_14Qbsh8Zww2VKVbaEfdScdVqQdBjGgXU","name":"vm_deploy_14Qbsh8Zww2VKVbaEfdScdVqQdBjGgXU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5666244028260057543","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-04-14T04:34:01.8448889Z","duration":"PT0.0007586S","correlationId":"d715954c-60c2-4cdd-b214-80399c73c4ce","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_R8hyF4yi4l9k5sL1895KTmKG0JFkccwS","name":"vm_deploy_R8hyF4yi4l9k5sL1895KTmKG0JFkccwS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18123562649241466655","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-05-10T03:47:05.1886111Z","duration":"PT0.0004167S","correlationId":"00248e51-6ec7-40f3-adb2-1367cbeb0d39","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_14Qbsh8Zww2VKVbaEfdScdVqQdBjGgXU/operationStatuses/08585516960441938291?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_R8hyF4yi4l9k5sL1895KTmKG0JFkccwS/operationStatuses/08585494524611126813?api-version=2021-04-01 cache-control: - no-cache content-length: - - '1817' + - '1818' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:34:01 GMT + - Tue, 10 May 2022 03:47:04 GMT expires: - '-1' pragma: @@ -1962,7 +1965,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1981,9 +1984,9 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516960441938291?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494524611126813?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1995,7 +1998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:34:31 GMT + - Tue, 10 May 2022 03:47:34 GMT expires: - '-1' pragma: @@ -2024,9 +2027,9 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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/08585516960441938291?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585494524611126813?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2038,7 +2041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:01 GMT + - Tue, 10 May 2022 03:48:04 GMT expires: - '-1' pragma: @@ -2067,21 +2070,21 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-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=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_14Qbsh8Zww2VKVbaEfdScdVqQdBjGgXU","name":"vm_deploy_14Qbsh8Zww2VKVbaEfdScdVqQdBjGgXU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5666244028260057543","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-04-14T04:34:34.7527279Z","duration":"PT32.9085976S","correlationId":"d715954c-60c2-4cdd-b214-80399c73c4ce","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_R8hyF4yi4l9k5sL1895KTmKG0JFkccwS","name":"vm_deploy_R8hyF4yi4l9k5sL1895KTmKG0JFkccwS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18123562649241466655","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-05-10T03:47:44.6496022Z","duration":"PT39.4614078S","correlationId":"00248e51-6ec7-40f3-adb2-1367cbeb0d39","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: - - '2309' + - '2310' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:01 GMT + - Tue, 10 May 2022 03:48:04 GMT expires: - '-1' pragma: @@ -2110,64 +2113,64 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Linux-5.13.0-1022-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=2021-11-01 response: body: string: "{\r\n \"name\": \"cli-proxy-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2723c59a-a90d-4aa6-b360-ebaecfe21789\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7c289154-120e-4bd6-ae03-8d4ca844ec67\",\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.202204040\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli-proxy-vm_OsDisk_1_d021b9f2eee8463182d111fcb0a5e78b\",\r\n + \"20.04.202205050\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli-proxy-vm_OsDisk_1_90bd759a01324134bafd4406eed6b586\",\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_d021b9f2eee8463182d111fcb0a5e78b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/disks/cli-proxy-vm_OsDisk_1_90bd759a01324134bafd4406eed6b586\"\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 AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 - \ },\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 + \"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.7.1.0\",\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\": - \"2022-04-14T04:34:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli-proxy-vm_OsDisk_1_d021b9f2eee8463182d111fcb0a5e78b\",\r\n + \"2022-05-10T03:48:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli-proxy-vm_OsDisk_1_90bd759a01324134bafd4406eed6b586\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-04-14T04:34:07.9639097+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-05-10T03:47:13.0132433+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\": \"2022-04-14T04:34:33.635943+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-05-10T03:47:43.5759253+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\": \"2022-04-14T04:34:05.5732968+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-05-10T03:47:10.4663855+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3903' + - '3952' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:02 GMT + - Tue, 10 May 2022 03:48:05 GMT expires: - '-1' pragma: @@ -2184,7 +2187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31990 status: code: 200 message: OK @@ -2203,18 +2206,18 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"cli-proxy-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"01f03d9b-4649-4429-8194-6ea81c49c1dd\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b86efb3e-068c-458f-a357-c4cfc37c8a46\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"42d9999c-0b70-4cae-b911-b98fda0652e3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d245d420-abdc-4063-88bf-1a3a82bd0c4a\",\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/\\\"01f03d9b-4649-4429-8194-6ea81c49c1dd\\\"\",\r\n + \ \"etag\": \"W/\\\"b86efb3e-068c-458f-a357-c4cfc37c8a46\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.42.3.4\",\r\n \"privateIPAllocationMethod\": @@ -2222,8 +2225,8 @@ interactions: \ },\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\": - \"luiga5ci4vyullqkpogjzb3sna.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-FB-E1-C8\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"cqvyvm5xdmqetenle31w1viz4g.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C5-38-30\",\r\n \"enableAcceleratedNetworking\": 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\": @@ -2237,9 +2240,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:02 GMT + - Tue, 10 May 2022 03:48:05 GMT etag: - - W/"01f03d9b-4649-4429-8194-6ea81c49c1dd" + - W/"b86efb3e-068c-458f-a357-c4cfc37c8a46" expires: - '-1' pragma: @@ -2256,7 +2259,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5aab999d-8064-4bca-a764-7eb14ccd92e0 + - c2f2751c-885b-44b4-86a1-8fd71d7c03d5 status: code: 200 message: OK @@ -2275,21 +2278,21 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:33:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:46:51Z","deletion_due_time":"1652413650","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:03 GMT + - Tue, 10 May 2022 03:48:06 GMT expires: - '-1' pragma: @@ -2318,24 +2321,26 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US 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%28%29&api-version=2020-04-01-preview 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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":"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/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"}]}' + 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-14T06:47:05.5411832Z","updatedOn":"2022-04-14T06:47:05.5411832Z","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/78e9b8d7-1b4b-4a28-8628-a010d123f198","type":"Microsoft.Authorization/roleAssignments","name":"78e9b8d7-1b4b-4a28-8628-a010d123f198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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:17.4269794Z","updatedOn":"2022-05-02T13:40:17.4269794Z","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/9eb0826f-d585-4b2c-297f-88912678969e","type":"Microsoft.Authorization/roleAssignments","name":"9eb0826f-d585-4b2c-297f-88912678969e"},{"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/b24988ac-6180-42a0-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:18.0736502Z","updatedOn":"2022-05-02T13:40:18.0736502Z","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/6791fc7d-4e72-449e-bbcd-1998969e613c","type":"Microsoft.Authorization/roleAssignments","name":"6791fc7d-4e72-449e-bbcd-1998969e613c"},{"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:17.9791750Z","updatedOn":"2022-05-02T13:40:17.9791750Z","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/1e3ee08d-0f20-4903-0e6c-ddb52a8c295f","type":"Microsoft.Authorization/roleAssignments","name":"1e3ee08d-0f20-4903-0e6c-ddb52a8c295f"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.4609962Z","updatedOn":"2022-05-02T13:40:18.4609962Z","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/ed89ddaa-12a2-4a23-9534-e5ba50244d5e","type":"Microsoft.Authorization/roleAssignments","name":"ed89ddaa-12a2-4a23-9534-e5ba50244d5e"},{"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:19.0797113Z","updatedOn":"2022-05-02T13:40:19.0797113Z","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/c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6","type":"Microsoft.Authorization/roleAssignments","name":"c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6"},{"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:19.1390601Z","updatedOn":"2022-05-02T13:40:19.1390601Z","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/1e9910d0-3818-45f1-56ba-fe51a728dc26","type":"Microsoft.Authorization/roleAssignments","name":"1e9910d0-3818-45f1-56ba-fe51a728dc26"},{"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.5129755Z","updatedOn":"2022-05-02T13:40:18.5129755Z","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/d3cf575a-3dc9-47b9-969d-99c43c846fdd","type":"Microsoft.Authorization/roleAssignments","name":"d3cf575a-3dc9-47b9-969d-99c43c846fdd"},{"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:19.0754481Z","updatedOn":"2022-05-02T13:40:19.0754481Z","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/a9284cbe-6d2e-47d0-a5a2-15771e2bcf16","type":"Microsoft.Authorization/roleAssignments","name":"a9284cbe-6d2e-47d0-a5a2-15771e2bcf16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-a8ff-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-05T19:30:29.6139441Z","updatedOn":"2022-05-05T19:30:29.6139441Z","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/d10052da-36e9-4745-8d05-0937faacd129","type":"Microsoft.Authorization/roleAssignments","name":"d10052da-36e9-4745-8d05-0937faacd129"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T05:45:49.3912934Z","updatedOn":"2022-05-09T05:45:49.3912934Z","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/d6925389-74b3-49b7-88ca-e90219deca8a","type":"Microsoft.Authorization/roleAssignments","name":"d6925389-74b3-49b7-88ca-e90219deca8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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-09T10:44:26.6330451Z","updatedOn":"2022-05-09T10:44:26.6330451Z","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/478ea2e6-34ab-4b73-34fc-b0cf7aa617d1","type":"Microsoft.Authorization/roleAssignments","name":"478ea2e6-34ab-4b73-34fc-b0cf7aa617d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:27.4767981Z","updatedOn":"2022-05-09T10:44:27.4767981Z","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/a95b3e38-9128-457e-1313-6c0478cffb90","type":"Microsoft.Authorization/roleAssignments","name":"a95b3e38-9128-457e-1313-6c0478cffb90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:26.1076222Z","updatedOn":"2022-05-09T10:44:26.1076222Z","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/cc56c9de-5dfb-4c61-3f59-46a5175b28c5","type":"Microsoft.Authorization/roleAssignments","name":"cc56c9de-5dfb-4c61-3f59-46a5175b28c5"},{"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-09T10:44:26.6828254Z","updatedOn":"2022-05-09T10:44:26.6828254Z","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/b1f58e56-e37d-4a1c-5918-ebbe6806b915","type":"Microsoft.Authorization/roleAssignments","name":"b1f58e56-e37d-4a1c-5918-ebbe6806b915"},{"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-09T10:44:27.3117746Z","updatedOn":"2022-05-09T10:44:27.3117746Z","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/6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab","type":"Microsoft.Authorization/roleAssignments","name":"6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab"},{"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-09T10:44:27.2809772Z","updatedOn":"2022-05-09T10:44:27.2809772Z","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/3ef6fc61-d442-4e52-e42d-567f83002f57","type":"Microsoft.Authorization/roleAssignments","name":"3ef6fc61-d442-4e52-e42d-567f83002f57"},{"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-09T10:44:28.1109276Z","updatedOn":"2022-05-09T10:44:28.1109276Z","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/d42b1164-a45c-4e98-65ea-5983642424a7","type":"Microsoft.Authorization/roleAssignments","name":"d42b1164-a45c-4e98-65ea-5983642424a7"},{"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-09T10:44:27.5269322Z","updatedOn":"2022-05-09T10:44:27.5269322Z","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/6a629e0b-2134-45c1-3800-d5fa7a5f9313","type":"Microsoft.Authorization/roleAssignments","name":"6a629e0b-2134-45c1-3800-d5fa7a5f9313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/b24988ac-6180-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/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"}]}' headers: cache-control: - no-cache content-length: - - '316403' + - '349963' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:03 GMT + - Tue, 10 May 2022 03:48:06 GMT expires: - '-1' pragma: @@ -2355,7 +2360,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestm73bmwcay-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesto2bmnwkbn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -2363,14 +2368,16 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "httpProxyConfig": {"httpProxy": "http://cli-proxy-vm:3128/", "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": - ["localhost", "127.0.0.1"], "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}}}' + ["localhost", "127.0.0.1"], "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -2381,40 +2388,39 @@ interactions: Connection: - keep-alive Content-Length: - - '4202' + - '4335' Content-Type: - application/json ParameterSetName: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -2427,29 +2433,32 @@ interactions: [\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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 cache-control: - no-cache content-length: - - '6361' + - '6540' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:08 GMT + - Tue, 10 May 2022 03:48:09 GMT expires: - '-1' pragma: @@ -2461,7 +2470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2480,33 +2489,32 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -2519,27 +2527,30 @@ interactions: [\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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '6361' + - '6540' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:08 GMT + - Tue, 10 May 2022 03:48:10 GMT expires: - '-1' pragma: @@ -2572,8 +2583,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2590,7 +2601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:08 GMT + - Tue, 10 May 2022 03:48:10 GMT expires: - '-1' pragma: @@ -2630,25 +2641,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US 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/932e6dea-e1d6-4c1c-9a12-6d8a8f13ef48?api-version=2020-04-01-preview + 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/2a992700-daa0-42db-877c-d77b1b68ac30?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal ca3d4fb8ef4b4a57ad159972cd5a7ae0 + 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: - - '163' + - '489' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:09 GMT + - Tue, 10 May 2022 03:48:11 GMT expires: - '-1' pragma: @@ -2679,8 +2694,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2697,7 +2712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:11 GMT + - Tue, 10 May 2022 03:48:13 GMT expires: - '-1' pragma: @@ -2737,25 +2752,24 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US 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/a6257f99-3a81-4d05-975a-d20a82424454?api-version=2020-04-01-preview + 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/14e85be9-1572-4728-b54c-7c8df0023efd?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + 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":"2022-05-10T03:48:14.1286871Z","updatedOn":"2022-05-10T03:48:14.4256159Z","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/14e85be9-1572-4728-b54c-7c8df0023efd","type":"Microsoft.Authorization/roleAssignments","name":"14e85be9-1572-4728-b54c-7c8df0023efd"}' headers: cache-control: - no-cache content-length: - - '163' + - '1041' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:35:11 GMT + - Tue, 10 May 2022 03:48:15 GMT expires: - '-1' pragma: @@ -2767,15 +2781,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2786,31 +2800,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?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\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:15 GMT + - Tue, 10 May 2022 03:48:39 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: @@ -2823,66 +2835,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; charset=utf-8 - 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: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - 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/8ffee463-8a66-40d3-9685-33b99b9c3136?api-version=2020-04-01-preview + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: "{\n \"name\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:16 GMT + - Tue, 10 May 2022 03:49:10 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: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2893,31 +2898,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?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\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:22 GMT + - Tue, 10 May 2022 03:49:40 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: @@ -2930,66 +2933,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; charset=utf-8 - 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: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - 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/57ac84c2-e554-4435-866d-2e4ce95fc7cc?api-version=2020-04-01-preview + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: "{\n \"name\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:23 GMT + - Tue, 10 May 2022 03:50:10 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: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3000,31 +2996,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?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\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:30 GMT + - Tue, 10 May 2022 03:50:40 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: @@ -3037,61 +3031,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; charset=utf-8 - 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: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - 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/1c8079fb-16dc-4a62-936a-e44c61456832?api-version=2020-04-01-preview + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: "{\n \"name\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:31 GMT + - Tue, 10 May 2022 03:51:10 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: + - 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: @@ -3107,23 +3094,23 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" + string: "{\n \"name\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:35:37 GMT + - Tue, 10 May 2022 03:51:40 GMT expires: - '-1' pragma: @@ -3145,7 +3132,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3156,31 +3143,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?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\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '121' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:41 GMT + - Tue, 10 May 2022 03:52:10 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: @@ -3193,66 +3178,60 @@ 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; charset=utf-8 - 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: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - 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/64a7346c-d0dc-4f07-b2fd-5f7e3e7085bd?api-version=2020-04-01-preview + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c26f1ca6-f1ef-4b27-a7e8-3d83d92aa854?api-version=2016-03-30 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 46abaf1869f5456fbbfdf451ebec0648 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: "{\n \"name\": \"a61c6fc2-eff1-274b-a7e8-3d83d92aa854\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:48:10.12Z\",\n \"endTime\": + \"2022-05-10T03:52:34.3115289Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '165' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:42 GMT + - Tue, 10 May 2022 03:52:40 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: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3263,31 +3242,76 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\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.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD + azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/998e24fa-afea-4c52-bf9e-32c60ae0847b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": + {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n + \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '873' + - '7007' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 14 Apr 2022 04:35:55 GMT + - Tue, 10 May 2022 03:52:41 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: @@ -3300,647 +3324,52 @@ 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; charset=utf-8 - 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: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - 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/d9845e71-9eb9-4dfd-ba22-5c9f46d650b1?api-version=2020-04-01-preview - 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":"2022-04-14T04:35:55.6388130Z","updatedOn":"2022-04-14T04:35:55.9356911Z","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/d9845e71-9eb9-4dfd-ba22-5c9f46d650b1","type":"Microsoft.Authorization/roleAssignments","name":"d9845e71-9eb9-4dfd-ba22-5c9f46d650b1"}' - headers: - cache-control: - - no-cache - content-length: - - '1041' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:35:58 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 - 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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:39: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4283ec5-8338-4149-ba2e-95ae455c203a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c53e28e4-3883-4941-ba2e-95ae455c203a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:35:07.9166666Z\",\n \"endTime\": - \"2022-04-14T04:39:59.8311442Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-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=2022-03-02-preview - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/543e8c7a-5344-4113-885b-6ae793ef2f09\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '7014' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:40: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 update + - aks update Connection: - keep-alive ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/543e8c7a-5344-4113-885b-6ae793ef2f09\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/998e24fa-afea-4c52-bf9e-32c60ae0847b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -3951,13 +3380,13 @@ interactions: \ \"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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n @@ -3967,11 +3396,11 @@ interactions: cache-control: - no-cache content-length: - - '7014' + - '7007' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:09 GMT + - Tue, 10 May 2022 03:52:41 GMT expires: - '-1' pragma: @@ -3991,30 +3420,31 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestm73bmwcay-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitesto2bmnwkbn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/543e8c7a-5344-4113-885b-6ae793ef2f09"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/998e24fa-afea-4c52-bf9e-32c60ae0847b"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "httpProxyConfig": {"httpProxy": "http://cli-proxy-vm:3128/", "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": ["localhost", "127.0.0.1"], "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, - "securityProfile": {}}}' + "securityProfile": {}, "storageProfile": {"diskCSIDriver": {}, "fileCSIDriver": + {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -4025,46 +3455,45 @@ interactions: Connection: - keep-alive Content-Length: - - '5212' + - '5293' Content-Type: - application/json ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/543e8c7a-5344-4113-885b-6ae793ef2f09\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/998e24fa-afea-4c52-bf9e-32c60ae0847b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -4075,29 +3504,32 @@ interactions: \ \"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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\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 },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a69172b2-26e0-46ab-94b5-add0f2d73708?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c048e8d4-ad58-4dfb-b610-256af23b5c3c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '6984' + - '7166' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:12 GMT + - Tue, 10 May 2022 03:52:45 GMT expires: - '-1' pragma: @@ -4113,7 +3545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -4131,14 +3563,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a69172b2-26e0-46ab-94b5-add0f2d73708?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c048e8d4-ad58-4dfb-b610-256af23b5c3c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b27291a6-e026-ab46-94b5-add0f2d73708\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:12.9833333Z\"\n }" + string: "{\n \"name\": \"d4e848c0-58ad-fb4d-b610-256af23b5c3c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:45.0466666Z\"\n }" headers: cache-control: - no-cache @@ -4147,7 +3579,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:42 GMT + - Tue, 10 May 2022 03:53:15 GMT expires: - '-1' pragma: @@ -4179,14 +3611,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a69172b2-26e0-46ab-94b5-add0f2d73708?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c048e8d4-ad58-4dfb-b610-256af23b5c3c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b27291a6-e026-ab46-94b5-add0f2d73708\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:12.9833333Z\"\n }" + string: "{\n \"name\": \"d4e848c0-58ad-fb4d-b610-256af23b5c3c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:45.0466666Z\"\n }" headers: cache-control: - no-cache @@ -4195,7 +3627,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:13 GMT + - Tue, 10 May 2022 03:53:45 GMT expires: - '-1' pragma: @@ -4227,15 +3659,15 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a69172b2-26e0-46ab-94b5-add0f2d73708?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c048e8d4-ad58-4dfb-b610-256af23b5c3c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b27291a6-e026-ab46-94b5-add0f2d73708\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:40:12.9833333Z\",\n \"endTime\": - \"2022-04-14T04:41:34.3666801Z\"\n }" + string: "{\n \"name\": \"d4e848c0-58ad-fb4d-b610-256af23b5c3c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:52:45.0466666Z\",\n \"endTime\": + \"2022-05-10T03:53:53.1604666Z\"\n }" headers: cache-control: - no-cache @@ -4244,7 +3676,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:43 GMT + - Tue, 10 May 2022 03:54:14 GMT expires: - '-1' pragma: @@ -4276,40 +3708,39 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestm73bmwcay-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesto2bmnwkbn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/543e8c7a-5344-4113-885b-6ae793ef2f09\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/998e24fa-afea-4c52-bf9e-32c60ae0847b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -4320,13 +3751,13 @@ interactions: \ \"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 \"konnectivity\",\n - \ \"10.244.0.0/16\",\n \"10.0.0.0/16\",\n \"168.63.129.16\",\n - \ \"10.42.0.0/16\",\n \"localhost\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n - \ ],\n \"effectiveNoProxy\": [\n \"konnectivity\",\n \"10.244.0.0/16\",\n - \ \"10.0.0.0/16\",\n \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"localhost\",\n - \ \"127.0.0.1\",\n \"169.254.169.254\",\n \"cliakstest-clitestm73bmwcay-8ecadf-f108077f.hcp.westus2.azmk8s.io\"\n + \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n + \ \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n + \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitesto2bmnwkbn-8ecadf-c1f427a3.hcp.westus2.azmk8s.io\",\n + \ \"konnectivity\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"10.244.0.0/16\",\n + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\"\n \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n \ },\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n @@ -4336,11 +3767,11 @@ interactions: cache-control: - no-cache content-length: - - '6986' + - '6979' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:43 GMT + - Tue, 10 May 2022 03:54:15 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml index ea971d19a8f..721ad75279c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:39:31Z"},"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","date":"2022-05-10T03:48:17Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:39:31 GMT + - Tue, 10 May 2022 03:48:17 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbay3dowzh-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxn4mua3ov-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": - ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false}}' + ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1543' + - '1676' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbay3dowzh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxn4mua3ov-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -115,21 +117,23 @@ interactions: [\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3292' + - '3471' content-type: - application/json date: - - Thu, 14 Apr 2022 04:39:34 GMT + - Tue, 10 May 2022 03:48:20 GMT expires: - '-1' pragma: @@ -141,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -160,23 +164,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:04 GMT + - Tue, 10 May 2022 03:48:50 GMT expires: - '-1' pragma: @@ -209,23 +213,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:35 GMT + - Tue, 10 May 2022 03:49:20 GMT expires: - '-1' pragma: @@ -258,23 +262,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:05 GMT + - Tue, 10 May 2022 03:49:51 GMT expires: - '-1' pragma: @@ -307,23 +311,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:35 GMT + - Tue, 10 May 2022 03:50:20 GMT expires: - '-1' pragma: @@ -356,23 +360,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:05 GMT + - Tue, 10 May 2022 03:50:50 GMT expires: - '-1' pragma: @@ -405,23 +409,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:35 GMT + - Tue, 10 May 2022 03:51:20 GMT expires: - '-1' pragma: @@ -454,24 +458,122 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe8198e0-79ae-412d-89c7-23e458275304?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e09881fe-ae79-2d41-89c7-23e458275304\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:39:35.0766666Z\",\n \"endTime\": - \"2022-04-14T04:42:36.0799329Z\"\n }" + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:51: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 --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:52: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 --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0b715c8-4b10-44dd-9717-a876440ba724?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c815b7e0-104b-dd44-9717-a876440ba724\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:48:21.01Z\",\n \"endTime\": + \"2022-05-10T03:52:37.0699081Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:05 GMT + - Tue, 10 May 2022 03:52:51 GMT expires: - '-1' pragma: @@ -504,39 +606,39 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbay3dowzh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxn4mua3ov-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2a6f385-8d56-425c-ac96-052fde9427c0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9c9fa0-4f0f-481b-9d44-a27be988447e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -557,11 +659,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:05 GMT + - Tue, 10 May 2022 03:52:52 GMT expires: - '-1' pragma: @@ -593,39 +695,39 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbay3dowzh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxn4mua3ov-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2a6f385-8d56-425c-ac96-052fde9427c0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9c9fa0-4f0f-481b-9d44-a27be988447e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -646,11 +748,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:06 GMT + - Tue, 10 May 2022 03:52:52 GMT expires: - '-1' pragma: @@ -670,28 +772,29 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestbay3dowzh-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestxn4mua3ov-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2a6f385-8d56-425c-ac96-052fde9427c0"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9c9fa0-4f0f-481b-9d44-a27be988447e"}]}, "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"}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -702,45 +805,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2633' + - '2714' Content-Type: - application/json ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbay3dowzh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxn4mua3ov-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2a6f385-8d56-425c-ac96-052fde9427c0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9c9fa0-4f0f-481b-9d44-a27be988447e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -753,21 +856,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3943' + - '4125' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:07 GMT + - Tue, 10 May 2022 03:52:55 GMT expires: - '-1' pragma: @@ -783,7 +889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 200 message: OK @@ -801,23 +907,23 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd4319c2-fd55-484b-96bc-0709cb97e984\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:08.69Z\"\n }" + string: "{\n \"name\": \"bd18126c-5639-1743-929f-0e8992d22412\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:55.7633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:38 GMT + - Tue, 10 May 2022 03:53:25 GMT expires: - '-1' pragma: @@ -849,23 +955,23 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd4319c2-fd55-484b-96bc-0709cb97e984\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:08.69Z\"\n }" + string: "{\n \"name\": \"bd18126c-5639-1743-929f-0e8992d22412\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:55.7633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:08 GMT + - Tue, 10 May 2022 03:53:55 GMT expires: - '-1' pragma: @@ -897,23 +1003,23 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd4319c2-fd55-484b-96bc-0709cb97e984\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:08.69Z\"\n }" + string: "{\n \"name\": \"bd18126c-5639-1743-929f-0e8992d22412\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:55.7633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:38 GMT + - Tue, 10 May 2022 03:54:25 GMT expires: - '-1' pragma: @@ -945,23 +1051,23 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd4319c2-fd55-484b-96bc-0709cb97e984\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:08.69Z\"\n }" + string: "{\n \"name\": \"bd18126c-5639-1743-929f-0e8992d22412\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:52:55.7633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:08 GMT + - Tue, 10 May 2022 03:54:56 GMT expires: - '-1' pragma: @@ -993,24 +1099,24 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c21943cd-55fd-4b48-96bc-0709cb97e984?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1218bd-3956-4317-929f-0e8992d22412?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd4319c2-fd55-484b-96bc-0709cb97e984\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:43:08.69Z\",\n \"endTime\": - \"2022-04-14T04:45:20.1819391Z\"\n }" + string: "{\n \"name\": \"bd18126c-5639-1743-929f-0e8992d22412\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:52:55.7633333Z\",\n \"endTime\": + \"2022-05-10T03:54:59.6426779Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:39 GMT + - Tue, 10 May 2022 03:55:25 GMT expires: - '-1' pragma: @@ -1042,39 +1148,39 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbay3dowzh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbay3dowzh-8ecadf-d682f822.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxn4mua3ov-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxn4mua3ov-8ecadf-afa5f671.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2a6f385-8d56-425c-ac96-052fde9427c0\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9c9fa0-4f0f-481b-9d44-a27be988447e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1095,11 +1201,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:39 GMT + - Tue, 10 May 2022 03:55:26 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml index 45f4a3701e8..44a9f210deb 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:45: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","date":"2022-05-10T03:55:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:40 GMT + - Tue, 10 May 2022 03:55:28 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesty2vjyhcmh-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5kthpvxbr-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": - ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false}}' + ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1543' + - '1676' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -115,21 +117,23 @@ interactions: [\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3292' + - '3471' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:43 GMT + - Tue, 10 May 2022 03:55:31 GMT expires: - '-1' pragma: @@ -141,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -160,14 +164,112 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:56:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:56:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +278,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:13 GMT + - Tue, 10 May 2022 03:57:01 GMT expires: - '-1' pragma: @@ -209,14 +311,14 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +327,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:43 GMT + - Tue, 10 May 2022 03:57:31 GMT expires: - '-1' pragma: @@ -258,14 +360,14 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +376,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:13 GMT + - Tue, 10 May 2022 03:58:01 GMT expires: - '-1' pragma: @@ -307,14 +409,14 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +425,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:43 GMT + - Tue, 10 May 2022 03:58:31 GMT expires: - '-1' pragma: @@ -356,14 +458,14 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +474,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:14 GMT + - Tue, 10 May 2022 03:59:00 GMT expires: - '-1' pragma: @@ -405,15 +507,15 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2504b8bc-c33d-461c-8c6e-8f7af44a70c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce85d232-a333-46e2-b61d-5fb2722a31e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bcb80425-3dc3-1c46-8c6e-8f7af44a70c0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:45:43.6566666Z\",\n \"endTime\": - \"2022-04-14T04:48:38.9677253Z\"\n }" + string: "{\n \"name\": \"32d285ce-33a3-e246-b61d-5fb2722a31e1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:55:31.0666666Z\",\n \"endTime\": + \"2022-05-10T03:59:02.7987405Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +524,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:43 GMT + - Tue, 10 May 2022 03:59:31 GMT expires: - '-1' pragma: @@ -455,39 +557,39 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -508,11 +610,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:44 GMT + - Tue, 10 May 2022 03:59:31 GMT expires: - '-1' pragma: @@ -544,39 +646,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -597,11 +699,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:45 GMT + - Tue, 10 May 2022 03:59:32 GMT expires: - '-1' pragma: @@ -621,28 +723,29 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesty2vjyhcmh-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitest5kthpvxbr-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463"}]}, "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"}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -653,45 +756,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2632' + - '2713' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -704,21 +807,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3942' + - '4124' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:47 GMT + - Tue, 10 May 2022 03:59:35 GMT expires: - '-1' pragma: @@ -734,7 +840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -752,23 +858,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67bd2fd8-0422-d240-9d34-bf0110f24f11\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.1166666Z\"\n }" + string: "{\n \"name\": \"449f0290-d85e-4644-9d92-165712a30ffd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:35.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:16 GMT + - Tue, 10 May 2022 04:00:05 GMT expires: - '-1' pragma: @@ -800,23 +906,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67bd2fd8-0422-d240-9d34-bf0110f24f11\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.1166666Z\"\n }" + string: "{\n \"name\": \"449f0290-d85e-4644-9d92-165712a30ffd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:35.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:46 GMT + - Tue, 10 May 2022 04:00:35 GMT expires: - '-1' pragma: @@ -848,23 +954,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67bd2fd8-0422-d240-9d34-bf0110f24f11\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.1166666Z\"\n }" + string: "{\n \"name\": \"449f0290-d85e-4644-9d92-165712a30ffd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:35.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:17 GMT + - Tue, 10 May 2022 04:01:05 GMT expires: - '-1' pragma: @@ -896,23 +1002,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67bd2fd8-0422-d240-9d34-bf0110f24f11\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.1166666Z\"\n }" + string: "{\n \"name\": \"449f0290-d85e-4644-9d92-165712a30ffd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:35.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:46 GMT + - Tue, 10 May 2022 04:01:35 GMT expires: - '-1' pragma: @@ -944,24 +1050,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d82fbd67-2204-40d2-9d34-bf0110f24f11?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90029f44-5ed8-4446-9d92-165712a30ffd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67bd2fd8-0422-d240-9d34-bf0110f24f11\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:48:47.1166666Z\",\n \"endTime\": - \"2022-04-14T04:51:05.2566467Z\"\n }" + string: "{\n \"name\": \"449f0290-d85e-4644-9d92-165712a30ffd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:59:35.6Z\",\n \"endTime\": + \"2022-05-10T04:01:48.7503972Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:17 GMT + - Tue, 10 May 2022 04:02:05 GMT expires: - '-1' pragma: @@ -993,39 +1099,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1046,11 +1152,11 @@ interactions: cache-control: - no-cache content-length: - - '3944' + - '3937' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:17 GMT + - Tue, 10 May 2022 04:02:05 GMT expires: - '-1' pragma: @@ -1082,39 +1188,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1135,11 +1241,11 @@ interactions: cache-control: - no-cache content-length: - - '3944' + - '3937' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:17 GMT + - Tue, 10 May 2022 04:02:07 GMT expires: - '-1' pragma: @@ -1159,28 +1265,29 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesty2vjyhcmh-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitest5kthpvxbr-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463"}]}, "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"}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1191,45 +1298,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2633' + - '2714' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1242,21 +1349,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3943' + - '4125' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:19 GMT + - Tue, 10 May 2022 04:02:09 GMT expires: - '-1' pragma: @@ -1272,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 200 message: OK @@ -1290,23 +1400,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ec83da35-a5cd-f245-85eb-c2df0a3eb48a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:19.98Z\"\n }" + string: "{\n \"name\": \"94672555-5530-bb4c-9bc5-babdbe024db3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:09.2433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:50 GMT + - Tue, 10 May 2022 04:02:38 GMT expires: - '-1' pragma: @@ -1338,23 +1448,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ec83da35-a5cd-f245-85eb-c2df0a3eb48a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:19.98Z\"\n }" + string: "{\n \"name\": \"94672555-5530-bb4c-9bc5-babdbe024db3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:09.2433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:19 GMT + - Tue, 10 May 2022 04:03:08 GMT expires: - '-1' pragma: @@ -1386,23 +1496,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ec83da35-a5cd-f245-85eb-c2df0a3eb48a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:19.98Z\"\n }" + string: "{\n \"name\": \"94672555-5530-bb4c-9bc5-babdbe024db3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:09.2433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:50 GMT + - Tue, 10 May 2022 04:03:39 GMT expires: - '-1' pragma: @@ -1434,23 +1544,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ec83da35-a5cd-f245-85eb-c2df0a3eb48a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:19.98Z\"\n }" + string: "{\n \"name\": \"94672555-5530-bb4c-9bc5-babdbe024db3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:09.2433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:20 GMT + - Tue, 10 May 2022 04:04:09 GMT expires: - '-1' pragma: @@ -1482,24 +1592,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35da83ec-cda5-45f2-85eb-c2df0a3eb48a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55256794-3055-4cbb-9bc5-babdbe024db3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ec83da35-a5cd-f245-85eb-c2df0a3eb48a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:51:19.98Z\",\n \"endTime\": - \"2022-04-14T04:53:30.7735259Z\"\n }" + string: "{\n \"name\": \"94672555-5530-bb4c-9bc5-babdbe024db3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:02:09.2433333Z\",\n \"endTime\": + \"2022-05-10T04:04:19.8945393Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:49 GMT + - Tue, 10 May 2022 04:04:39 GMT expires: - '-1' pragma: @@ -1531,39 +1641,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesty2vjyhcmh-8ecadf\",\n \"fqdn\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesty2vjyhcmh-8ecadf-05c6eabf.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5kthpvxbr-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5kthpvxbr-8ecadf-8a9189be.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0bdbf32e-756f-483a-bc66-2faa73d5641c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb6180c3-addf-4a35-a747-32b5c0f4f463\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1584,11 +1694,11 @@ interactions: cache-control: - no-cache content-length: - - '3945' + - '3938' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:50 GMT + - Tue, 10 May 2022 04:04:39 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml index 2572b657390..c9f4b13c14a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-26T02:47:16Z"},"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","date":"2022-05-10T04:04:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Apr 2022 02:47:17 GMT + - Tue, 10 May 2022 04:04:41 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwnltoibba-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3wq6wvi4f-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,16 +68,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1424' + - '1557' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -83,21 +85,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestwnltoibba-79a739\",\n \"fqdn\": \"cliakstest-clitestwnltoibba-79a739-364e0621.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwnltoibba-79a739-364e0621.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3wq6wvi4f-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,24 @@ interactions: \ \"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 \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3098' + - '3277' content-type: - application/json date: - - Tue, 26 Apr 2022 02:47:21 GMT + - Tue, 10 May 2022 04:04:43 GMT expires: - '-1' pragma: @@ -135,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -153,14 +158,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +174,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:47:51 GMT + - Tue, 10 May 2022 04:05:13 GMT expires: - '-1' pragma: @@ -201,14 +206,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +222,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:48:21 GMT + - Tue, 10 May 2022 04:05:43 GMT expires: - '-1' pragma: @@ -249,14 +254,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +270,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:48:51 GMT + - Tue, 10 May 2022 04:06:13 GMT expires: - '-1' pragma: @@ -297,14 +302,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +318,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:49:21 GMT + - Tue, 10 May 2022 04:06:44 GMT expires: - '-1' pragma: @@ -345,14 +350,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +366,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:49:51 GMT + - Tue, 10 May 2022 04:07:14 GMT expires: - '-1' pragma: @@ -393,14 +398,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +414,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:50:21 GMT + - Tue, 10 May 2022 04:07:44 GMT expires: - '-1' pragma: @@ -441,14 +446,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +462,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:50:52 GMT + - Tue, 10 May 2022 04:08:14 GMT expires: - '-1' pragma: @@ -489,14 +494,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +510,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:21 GMT + - Tue, 10 May 2022 04:08:44 GMT expires: - '-1' pragma: @@ -537,15 +542,15 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31ae018c-7437-45c1-be3c-ca98491cf3d2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1f4c05f-8fd6-4fec-82fe-cca8b4985141?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c01ae31-3774-c145-be3c-ca98491cf3d2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T02:47:21.92Z\",\n \"endTime\": - \"2022-04-26T02:51:46.7029479Z\"\n }" + string: "{\n \"name\": \"5fc0f4f1-d68f-ec4f-82fe-cca8b4985141\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:04:44.23Z\",\n \"endTime\": + \"2022-05-10T04:09:14.5701035Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +559,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:52 GMT + - Tue, 10 May 2022 04:09:14 GMT expires: - '-1' pragma: @@ -586,10 +591,10 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -597,28 +602,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestwnltoibba-79a739\",\n \"fqdn\": \"cliakstest-clitestwnltoibba-79a739-364e0621.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwnltoibba-79a739-364e0621.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3wq6wvi4f-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\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/1d68b18b-5b1c-4fe3-b93e-2256d5589287\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5e9f7c0-7967-4237-a943-898c7f7b2228\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": @@ -636,11 +641,11 @@ interactions: cache-control: - no-cache content-length: - - '3751' + - '3744' content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:52 GMT + - Tue, 10 May 2022 04:09:15 GMT expires: - '-1' pragma: @@ -672,10 +677,10 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -683,28 +688,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestwnltoibba-79a739\",\n \"fqdn\": \"cliakstest-clitestwnltoibba-79a739-364e0621.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwnltoibba-79a739-364e0621.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3wq6wvi4f-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\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/1d68b18b-5b1c-4fe3-b93e-2256d5589287\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5e9f7c0-7967-4237-a943-898c7f7b2228\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": @@ -722,11 +727,11 @@ interactions: cache-control: - no-cache content-length: - - '3751' + - '3744' content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:53 GMT + - Tue, 10 May 2022 04:09:15 GMT expires: - '-1' pragma: @@ -747,26 +752,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": - "cliakstest-clitestwnltoibba-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitest3wq6wvi4f-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.22.6", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": "Standard", "natGatewayProfile": {"managedOutboundIPProfile": - {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d68b18b-5b1c-4fe3-b93e-2256d5589287"}], + {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5e9f7c0-7967-4237-a943-898c7f7b2228"}], "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", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -777,16 +783,16 @@ interactions: Connection: - keep-alive Content-Length: - - '2478' + - '2559' Content-Type: - application/json ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -794,28 +800,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestwnltoibba-79a739\",\n \"fqdn\": \"cliakstest-clitestwnltoibba-79a739-364e0621.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwnltoibba-79a739-364e0621.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3wq6wvi4f-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\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/1d68b18b-5b1c-4fe3-b93e-2256d5589287\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5e9f7c0-7967-4237-a943-898c7f7b2228\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": @@ -825,21 +831,24 @@ interactions: {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa7f385e-f79c-4e88-b11a-5617d8bc0b92?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e484aec-fc93-422a-b741-ab7a56b89eb6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3750' + - '3932' content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:55 GMT + - Tue, 10 May 2022 04:09:18 GMT expires: - '-1' pragma: @@ -855,55 +864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout - User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa7f385e-f79c-4e88-b11a-5617d8bc0b92?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5e387faa-9cf7-884e-b11a-5617d8bc0b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:51:56.0466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 02:52: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 + - '1196' status: code: 200 message: OK @@ -921,23 +882,23 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa7f385e-f79c-4e88-b11a-5617d8bc0b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e484aec-fc93-422a-b741-ab7a56b89eb6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e387faa-9cf7-884e-b11a-5617d8bc0b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:51:56.0466666Z\"\n }" + string: "{\n \"name\": \"ec4a484e-93fc-2a42-b741-ab7a56b89eb6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:19.25Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 26 Apr 2022 02:52:55 GMT + - Tue, 10 May 2022 04:09:49 GMT expires: - '-1' pragma: @@ -969,23 +930,23 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa7f385e-f79c-4e88-b11a-5617d8bc0b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e484aec-fc93-422a-b741-ab7a56b89eb6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e387faa-9cf7-884e-b11a-5617d8bc0b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:51:56.0466666Z\"\n }" + string: "{\n \"name\": \"ec4a484e-93fc-2a42-b741-ab7a56b89eb6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:19.25Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 26 Apr 2022 02:53:26 GMT + - Tue, 10 May 2022 04:10:19 GMT expires: - '-1' pragma: @@ -1017,24 +978,24 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa7f385e-f79c-4e88-b11a-5617d8bc0b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e484aec-fc93-422a-b741-ab7a56b89eb6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e387faa-9cf7-884e-b11a-5617d8bc0b92\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T02:51:56.0466666Z\",\n \"endTime\": - \"2022-04-26T02:53:37.3168891Z\"\n }" + string: "{\n \"name\": \"ec4a484e-93fc-2a42-b741-ab7a56b89eb6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:09:19.25Z\",\n \"endTime\": + \"2022-05-10T04:10:44.7037632Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 26 Apr 2022 02:53:56 GMT + - Tue, 10 May 2022 04:10:49 GMT expires: - '-1' pragma: @@ -1066,10 +1027,10 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1077,29 +1038,29 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestwnltoibba-79a739\",\n \"fqdn\": \"cliakstest-clitestwnltoibba-79a739-364e0621.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwnltoibba-79a739-364e0621.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3wq6wvi4f-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3wq6wvi4f-8ecadf-6a5e1fbc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\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/1d68b18b-5b1c-4fe3-b93e-2256d5589287\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c332ae0b-86d9-4446-be80-e17d41d12d67\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5e9f7c0-7967-4237-a943-898c7f7b2228\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc171406-f86c-429a-8e07-924af6345b67\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": @@ -1117,11 +1078,11 @@ interactions: cache-control: - no-cache content-length: - - '3976' + - '3969' content-type: - application/json date: - - Tue, 26 Apr 2022 02:53:56 GMT + - Tue, 10 May 2022 04:10:49 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml index 2ae2ba6253e..f578b335406 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0 Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0 Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -54,7 +54,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:47 GMT + - Tue, 10 May 2022 03:45:12 GMT expires: - '-1' pragma: @@ -74,19 +74,21 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitesthsgc2qyd7-8ecadf", + {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitest2nahbxlvu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard", "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false}}' + "standard", "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -99,17 +101,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1463' + - '1596' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -117,21 +119,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitesthsgc2qyd7-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthsgc2qyd7-8ecadf-30680242.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthsgc2qyd7-8ecadf-30680242.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest2nahbxlvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest2nahbxlvu-8ecadf-591bb6d3.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest2nahbxlvu-8ecadf-591bb6d3.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 @@ -141,25 +143,27 @@ interactions: 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 \"fdc9:c551:5a14:1f52::/64\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\",\n \"fde5:3e0f:584c:9b2e::/108\"\n ],\n \"ipFamilies\": + [\n \"10.244.0.0/16\",\n \"fd20:4f30:80f2:bcbc::/64\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\",\n \"fd83:f0ba:eefd:f4b1::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3183' + - '3362' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:54 GMT + - Tue, 10 May 2022 03:45:20 GMT expires: - '-1' pragma: @@ -171,7 +175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -192,23 +196,78 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '255' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:45: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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + 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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:23 GMT + - Tue, 10 May 2022 03:46:20 GMT expires: - '-1' pragma: @@ -243,23 +302,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:53 GMT + - Tue, 10 May 2022 03:46:51 GMT expires: - '-1' pragma: @@ -294,23 +355,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:24 GMT + - Tue, 10 May 2022 03:47:20 GMT expires: - '-1' pragma: @@ -345,23 +408,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:54 GMT + - Tue, 10 May 2022 03:47:50 GMT expires: - '-1' pragma: @@ -396,23 +461,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:23 GMT + - Tue, 10 May 2022 03:48:20 GMT expires: - '-1' pragma: @@ -447,23 +514,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:54 GMT + - Tue, 10 May 2022 03:48:50 GMT expires: - '-1' pragma: @@ -498,23 +567,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:24 GMT + - Tue, 10 May 2022 03:49:20 GMT expires: - '-1' pragma: @@ -549,23 +620,25 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"resourceGroup\": + \"clitest000001\",\n \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": + \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '255' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:54 GMT + - Tue, 10 May 2022 03:49:51 GMT expires: - '-1' pragma: @@ -600,24 +673,26 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3c3ae6a3-21c1-4457-ad47-4e95df54ef1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b910e3b3-1036-49ae-bddd-15e8c31d0872?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3e63a3c-c121-5744-ad47-4e95df54ef1f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:41:53.45Z\",\n \"endTime\": - \"2022-04-14T04:46:00.1315996Z\"\n }" + string: "{\n \"name\": \"b3e310b9-3610-ae49-bddd-15e8c31d0872\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:45:20.34Z\",\n \"endTime\": + \"2022-05-10T03:50:10.653348Z\",\n \"resourceGroup\": \"clitest000001\",\n + \ \"resourceName\": \"cliakstest000002\",\n \"subscriptionID\": \"c9dfca8e-a3d1-a44e-b844-0d9f87e4d7c8\"\n + }" headers: cache-control: - no-cache content-length: - - '165' + - '298' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:24 GMT + - Tue, 10 May 2022 03:50:21 GMT expires: - '-1' pragma: @@ -652,10 +727,10 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -663,52 +738,54 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": - \"cliakstest-clitesthsgc2qyd7-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthsgc2qyd7-8ecadf-30680242.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthsgc2qyd7-8ecadf-30680242.portal.hcp.centraluseuap.azmk8s.io\",\n + \"cliakstest-clitest2nahbxlvu-8ecadf\",\n \"fqdn\": \"cliakstest-clitest2nahbxlvu-8ecadf-591bb6d3.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest2nahbxlvu-8ecadf-591bb6d3.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.05.04\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\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_centraluseuap/providers/Microsoft.Network/publicIPAddresses/92b302f0-4bca-424c-8f90-faa070c8edba\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/224b0ecd-5795-49ed-9a20-c59ee7d3e9c9-ipv6\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/3f0e8b05-50a5-419c-8f9c-a567e2e0191a\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7f1338d4-963f-4250-99ca-6b742e0d13b4-ipv6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\",\n \"fdc9:c551:5a14:1f52::/64\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\",\n \"fde5:3e0f:584c:9b2e::/108\"\n ],\n \"ipFamilies\": + [\n \"10.244.0.0/16\",\n \"fd20:4f30:80f2:bcbc::/64\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\",\n \"fd83:f0ba:eefd:f4b1::/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_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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4083' + - '4262' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:24 GMT + - Tue, 10 May 2022 03:50:22 GMT expires: - '-1' pragma: @@ -742,26 +819,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/750cdb39-7e06-4c2b-a5d5-2cc4d54bf085?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/803a9914-8236-4a4b-a351-a21acbc79ff5?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:46:26 GMT + - Tue, 10 May 2022 03:50:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/750cdb39-7e06-4c2b-a5d5-2cc4d54bf085?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/803a9914-8236-4a4b-a351-a21acbc79ff5?api-version=2016-03-30 pragma: - no-cache server: @@ -771,7 +848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml index 83bccdf1909..79ec474d7ff 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml @@ -19,7 +19,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs3ZDA4MzRhYS0xNjViLTQ2NWQtOTgwZC02ZTc1ODFlMjM5Nzg=?api-version=2018-09-01 + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzI1OTBiYy0wZGZmLTRlZjYtYmIwOC1jYTc3NTg3YmIzM2Q=?api-version=2018-09-01 cache-control: - private content-length: @@ -35,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:46:29 GMT + - Tue, 10 May 2022 03:50:26 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs3ZDA4MzRhYS0xNjViLTQ2NWQtOTgwZC02ZTc1ODFlMjM5Nzg=?api-version=2018-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzI1OTBiYy0wZGZmLTRlZjYtYmIwOC1jYTc3NTg3YmIzM2Q=?api-version=2018-09-01 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -67,9 +67,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs3ZDA4MzRhYS0xNjViLTQ2NWQtOTgwZC02ZTc1ODFlMjM5Nzg=?api-version=2018-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzI1OTBiYy0wZGZmLTRlZjYtYmIwOC1jYTc3NTg3YmIzM2Q=?api-version=2018-09-01 response: body: string: '{"status":"Succeeded"}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:46:59 GMT + - Tue, 10 May 2022 03:50:57 GMT server: - Microsoft-IIS/10.0 strict-transport-security: @@ -115,12 +115,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.13.0-1022-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":"d2ef2148-e1f5-4e44-9e34-619a843fbf06","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":"69b6a35f-447f-4e92-b63d-07960d983e99","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' headers: cache-control: - private @@ -129,9 +129,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:46:59 GMT + - Tue, 10 May 2022 03:50:57 GMT etag: - - d2ef2148-e1f5-4e44-9e34-619a843fbf06 + - 69b6a35f-447f-4e92-b63d-07960d983e99 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -165,21 +165,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:46:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:50:25Z","deletion_due_time":"1652413830","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:46:59 GMT + - Tue, 10 May 2022 03:50:56 GMT expires: - '-1' pragma: @@ -211,7 +211,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000002?api-version=2018-11-30 response: @@ -225,7 +225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:00 GMT + - Tue, 10 May 2022 03:50:58 GMT expires: - '-1' location: @@ -237,7 +237,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -255,8 +255,8 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -274,7 +274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:01 GMT + - Tue, 10 May 2022 03:50:57 GMT expires: - '-1' pragma: @@ -313,15 +313,15 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US 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=2020-04-01-preview 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":"2022-04-14T04:47:01.6073512Z","updatedOn":"2022-04-14T04:47:01.8729922Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T03:50:58.6066248Z","updatedOn":"2022-05-10T03:50:58.9035044Z","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 @@ -330,7 +330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:04 GMT + - Tue, 10 May 2022 03:51:00 GMT expires: - '-1' pragma: @@ -342,7 +342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -362,21 +362,21 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:46:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T03:50:25Z","deletion_due_time":"1652413830","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:04 GMT + - Tue, 10 May 2022 03:51:01 GMT expires: - '-1' pragma: @@ -400,14 +400,16 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": true, "privateDNSZone": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -418,7 +420,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1855' + - '1988' Content-Type: - application/json ParameterSetName: @@ -426,32 +428,32 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"fqdn\": \"cliakstest000003-1974eec7.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"9662953f0b6c4301a3e37059f85085b2-priv.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"fqdn\": \"cliakstest000003-a068d24d.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"79916bb18d6d70c55de63f7c4ab401cd-priv.portal.hcp.westus2.azmk8s.io\",\n \ \"privateFQDN\": \"cliakstest000003.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -467,24 +469,26 @@ interactions: \ \"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 \"privateClusterVersion\": - \"v1\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + \ \"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 },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002\": {\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n \ }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3805' + - '3949' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:09 GMT + - Tue, 10 May 2022 03:51:05 GMT expires: - '-1' pragma: @@ -496,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -516,23 +520,123 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:51: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-count --fqdn-subdomain --load-balancer-sku + --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity + --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:52: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-count --fqdn-subdomain --load-balancer-sku + --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity + --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:39 GMT + - Tue, 10 May 2022 03:52:35 GMT expires: - '-1' pragma: @@ -566,23 +670,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:09 GMT + - Tue, 10 May 2022 03:53:06 GMT expires: - '-1' pragma: @@ -616,23 +720,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:39 GMT + - Tue, 10 May 2022 03:53:36 GMT expires: - '-1' pragma: @@ -666,23 +770,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:08 GMT + - Tue, 10 May 2022 03:54:06 GMT expires: - '-1' pragma: @@ -716,23 +820,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:39 GMT + - Tue, 10 May 2022 03:54:36 GMT expires: - '-1' pragma: @@ -766,23 +870,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:09 GMT + - Tue, 10 May 2022 03:55:06 GMT expires: - '-1' pragma: @@ -816,23 +920,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:39 GMT + - Tue, 10 May 2022 03:55:35 GMT expires: - '-1' pragma: @@ -866,23 +970,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:09 GMT + - Tue, 10 May 2022 03:56:05 GMT expires: - '-1' pragma: @@ -916,23 +1020,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:39 GMT + - Tue, 10 May 2022 03:56:35 GMT expires: - '-1' pragma: @@ -966,23 +1070,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:10 GMT + - Tue, 10 May 2022 03:57:06 GMT expires: - '-1' pragma: @@ -1016,23 +1120,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:39 GMT + - Tue, 10 May 2022 03:57:36 GMT expires: - '-1' pragma: @@ -1066,23 +1170,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:09 GMT + - Tue, 10 May 2022 03:58:06 GMT expires: - '-1' pragma: @@ -1116,24 +1220,24 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/022af77e-e790-4a4b-a0ba-ceb0f37cb636?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec72ea83-6849-4f93-affc-c94e41347e73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ef72a02-90e7-4b4a-a0ba-ceb0f37cb636\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:47:09.38Z\",\n \"endTime\": - \"2022-04-14T04:53:19.2341473Z\"\n }" + string: "{\n \"name\": \"83ea72ec-4968-934f-affc-c94e41347e73\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:51:05.7333333Z\",\n \"endTime\": + \"2022-05-10T03:58:08.4461064Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:40 GMT + - Tue, 10 May 2022 03:58:36 GMT expires: - '-1' pragma: @@ -1167,39 +1271,39 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"fqdn\": \"cliakstest000003-1974eec7.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"9662953f0b6c4301a3e37059f85085b2-priv.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"fqdn\": \"cliakstest000003-a068d24d.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"79916bb18d6d70c55de63f7c4ab401cd-priv.portal.hcp.westus2.azmk8s.io\",\n \ \"privateFQDN\": \"cliakstest000003.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/27789b59-a2c5-4cdb-8ce5-8593075e3e12\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/c96ac23a-9b75-43c2-84b8-a73276eaca3e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1210,9 +1314,8 @@ interactions: \ \"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 \"privateClusterVersion\": - \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": @@ -1224,11 +1327,11 @@ interactions: cache-control: - no-cache content-length: - - '4711' + - '4669' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:40 GMT + - Tue, 10 May 2022 03:58:36 GMT expires: - '-1' pragma: @@ -1262,26 +1365,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c0fe6cd-3b0d-45cb-9b35-3f02bcf75f52?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3aac5f75-d7a5-4d33-b05b-b356a8aed18b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:53:41 GMT + - Tue, 10 May 2022 03:58:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6c0fe6cd-3b0d-45cb-9b35-3f02bcf75f52?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3aac5f75-d7a5-4d33-b05b-b356a8aed18b?api-version=2016-03-30 pragma: - no-cache server: @@ -1291,7 +1394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml index b860e65091b..005fc61bc51 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:53:41Z"},"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","date":"2022-05-10T03:58:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:53:41 GMT + - Tue, 10 May 2022 03:58:38 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfbylanbyt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbamcdnf5q-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfbylanbyt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestbamcdnf5q-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:44 GMT + - Tue, 10 May 2022 03:58:41 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -153,23 +157,119 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:59: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 -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:59: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 -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:14 GMT + - Tue, 10 May 2022 04:00:11 GMT expires: - '-1' pragma: @@ -201,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:44 GMT + - Tue, 10 May 2022 04:00:42 GMT expires: - '-1' pragma: @@ -249,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:14 GMT + - Tue, 10 May 2022 04:01:12 GMT expires: - '-1' pragma: @@ -297,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:45 GMT + - Tue, 10 May 2022 04:01:42 GMT expires: - '-1' pragma: @@ -345,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:14 GMT + - Tue, 10 May 2022 04:02:12 GMT expires: - '-1' pragma: @@ -393,24 +493,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/add2b090-680d-4166-82c0-d4481dff0e5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0891c624-3508-435c-a326-9fca84287fb5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"90b0d2ad-0d68-6641-82c0-d4481dff0e5a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:53:45.0133333Z\",\n \"endTime\": - \"2022-04-14T04:56:31.5481128Z\"\n }" + string: "{\n \"name\": \"24c69108-0835-5c43-a326-9fca84287fb5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:58:42.05Z\",\n \"endTime\": + \"2022-05-10T04:02:21.2650287Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:45 GMT + - Tue, 10 May 2022 04:02:42 GMT expires: - '-1' pragma: @@ -442,39 +542,39 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfbylanbyt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestbamcdnf5q-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e0fdc4e0-f8be-41bf-9426-74811683d7e2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/24a1489d-f625-44a3-a6f1-0daecb3c4b28\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:46 GMT + - Tue, 10 May 2022 04:02:42 GMT expires: - '-1' pragma: @@ -529,39 +629,39 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfbylanbyt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestbamcdnf5q-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e0fdc4e0-f8be-41bf-9426-74811683d7e2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/24a1489d-f625-44a3-a6f1-0daecb3c4b28\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -579,11 +679,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:46 GMT + - Tue, 10 May 2022 04:02:44 GMT expires: - '-1' pragma: @@ -603,28 +703,29 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestfbylanbyt-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestbamcdnf5q-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e0fdc4e0-f8be-41bf-9426-74811683d7e2"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/24a1489d-f625-44a3-a6f1-0daecb3c4b28"}]}, "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_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -635,46 +736,46 @@ interactions: Connection: - keep-alive Content-Length: - - '2607' + - '2688' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfbylanbyt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestbamcdnf5q-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e0fdc4e0-f8be-41bf-9426-74811683d7e2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/24a1489d-f625-44a3-a6f1-0daecb3c4b28\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -686,21 +787,24 @@ interactions: {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c73001-7a81-4bc8-8914-adb2783969f7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a814333f-408f-4c9c-882f-c972ad6df273?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3913' + - '4095' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:48 GMT + - Tue, 10 May 2022 04:02:45 GMT expires: - '-1' pragma: @@ -716,7 +820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -735,23 +839,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c73001-7a81-4bc8-8914-adb2783969f7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a814333f-408f-4c9c-882f-c972ad6df273?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0130c7d3-817a-c84b-8914-adb2783969f7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:56:48.6633333Z\"\n }" + string: "{\n \"name\": \"3f3314a8-8f40-9c4c-882f-c972ad6df273\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:45.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:18 GMT + - Tue, 10 May 2022 04:03:15 GMT expires: - '-1' pragma: @@ -784,23 +888,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c73001-7a81-4bc8-8914-adb2783969f7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a814333f-408f-4c9c-882f-c972ad6df273?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0130c7d3-817a-c84b-8914-adb2783969f7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:56:48.6633333Z\"\n }" + string: "{\n \"name\": \"3f3314a8-8f40-9c4c-882f-c972ad6df273\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:45.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:48 GMT + - Tue, 10 May 2022 04:03:45 GMT expires: - '-1' pragma: @@ -833,23 +937,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c73001-7a81-4bc8-8914-adb2783969f7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a814333f-408f-4c9c-882f-c972ad6df273?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0130c7d3-817a-c84b-8914-adb2783969f7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:56:48.6633333Z\"\n }" + string: "{\n \"name\": \"3f3314a8-8f40-9c4c-882f-c972ad6df273\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:45.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:18 GMT + - Tue, 10 May 2022 04:04:16 GMT expires: - '-1' pragma: @@ -882,24 +986,24 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c73001-7a81-4bc8-8914-adb2783969f7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a814333f-408f-4c9c-882f-c972ad6df273?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0130c7d3-817a-c84b-8914-adb2783969f7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:56:48.6633333Z\",\n \"endTime\": - \"2022-04-14T04:58:34.3036793Z\"\n }" + string: "{\n \"name\": \"3f3314a8-8f40-9c4c-882f-c972ad6df273\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:02:45.78Z\",\n \"endTime\": + \"2022-05-10T04:04:18.1552305Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:48 GMT + - Tue, 10 May 2022 04:04:45 GMT expires: - '-1' pragma: @@ -932,39 +1036,39 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfbylanbyt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfbylanbyt-8ecadf-e1aaa2af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestbamcdnf5q-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbamcdnf5q-8ecadf-1e584ce0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e0fdc4e0-f8be-41bf-9426-74811683d7e2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/24a1489d-f625-44a3-a6f1-0daecb3c4b28\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -984,11 +1088,11 @@ interactions: cache-control: - no-cache content-length: - - '3915' + - '3908' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:48 GMT + - Tue, 10 May 2022 04:04:45 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml index 4e616be31b2..62238ca2b4d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:44:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:48:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:03 GMT + - Tue, 10 May 2022 03:48:00 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx7asktnvd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgr66zdlu6-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": - true, "privateDNSZone": "none"}, "disableLocalAccounts": false}}' + true, "privateDNSZone": "none"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,40 +70,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1529' + - '1662' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestx7asktnvd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestx7asktnvd-8ecadf-35e6347c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"c551d8648edfd6a1c4b5af2d02367105-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestx7asktnvd-8ecadf-35e6347c.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgr66zdlu6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgr66zdlu6-8ecadf-b65415e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"6e4eb7acd65603b726ae030928bc34bc-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestgr66zdlu6-8ecadf-b65415e4.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -117,22 +119,24 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"none\",\n \"enablePrivateClusterPublicFQDN\": - true,\n \"privateClusterVersion\": \"v1\"\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": + 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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3553' + - '3697' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:05 GMT + - Tue, 10 May 2022 03:48:04 GMT expires: - '-1' pragma: @@ -163,14 +167,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -179,7 +183,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:36 GMT + - Tue, 10 May 2022 03:48:34 GMT expires: - '-1' pragma: @@ -212,14 +216,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -228,7 +232,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:06 GMT + - Tue, 10 May 2022 03:49:04 GMT expires: - '-1' pragma: @@ -261,14 +265,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -277,7 +281,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:36 GMT + - Tue, 10 May 2022 03:49:34 GMT expires: - '-1' pragma: @@ -310,14 +314,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -326,7 +330,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:06 GMT + - Tue, 10 May 2022 03:50:04 GMT expires: - '-1' pragma: @@ -359,14 +363,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -375,7 +379,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:36 GMT + - Tue, 10 May 2022 03:50:33 GMT expires: - '-1' pragma: @@ -408,14 +412,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -424,7 +428,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:06 GMT + - Tue, 10 May 2022 03:51:04 GMT expires: - '-1' pragma: @@ -457,14 +461,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -473,7 +477,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:36 GMT + - Tue, 10 May 2022 03:51:34 GMT expires: - '-1' pragma: @@ -506,14 +510,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +526,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:06 GMT + - Tue, 10 May 2022 03:52:04 GMT expires: - '-1' pragma: @@ -555,14 +559,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -571,7 +575,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:37 GMT + - Tue, 10 May 2022 03:52:34 GMT expires: - '-1' pragma: @@ -604,14 +608,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -620,7 +624,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:07 GMT + - Tue, 10 May 2022 03:53:04 GMT expires: - '-1' pragma: @@ -653,14 +657,14 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" headers: cache-control: - no-cache @@ -669,7 +673,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:36 GMT + - Tue, 10 May 2022 03:53:34 GMT expires: - '-1' pragma: @@ -702,15 +706,64 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffada0-8150-47e5-ae8c-0caa8b30bf75?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a0adff63-5081-e547-ae8c-0caa8b30bf75\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:44:06.3933333Z\",\n \"endTime\": - \"2022-04-14T04:50:01.9408212Z\"\n }" + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:54: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-count --load-balancer-sku --enable-private-cluster + --private-dns-zone --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6384ba8-aa0a-44ba-96bb-aa580316cebb?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a84b38a6-0aaa-ba44-96bb-aa580316cebb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:48:04.0266666Z\",\n \"endTime\": + \"2022-05-10T03:54:12.6437236Z\"\n }" headers: cache-control: - no-cache @@ -719,7 +772,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:07 GMT + - Tue, 10 May 2022 03:54:35 GMT expires: - '-1' pragma: @@ -752,40 +805,40 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestx7asktnvd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestx7asktnvd-8ecadf-35e6347c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"c551d8648edfd6a1c4b5af2d02367105-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestx7asktnvd-8ecadf-35e6347c.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgr66zdlu6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgr66zdlu6-8ecadf-b65415e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"6e4eb7acd65603b726ae030928bc34bc-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestgr66zdlu6-8ecadf-b65415e4.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/33ff8f19-b791-4536-8676-1f1f5c9cd607\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3013d3c9-d45d-487d-a50b-fb0c3b8d5976\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -796,8 +849,8 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"none\",\n \"enablePrivateClusterPublicFQDN\": - true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": @@ -808,11 +861,11 @@ interactions: cache-control: - no-cache content-length: - - '4403' + - '4361' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:07 GMT + - Tue, 10 May 2022 03:54:35 GMT expires: - '-1' pragma: @@ -846,26 +899,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/854ab192-36f1-4d3c-a436-91266212faa8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fbd5f1e-ff81-48fa-9d42-7ef44171f9da?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:50:08 GMT + - Tue, 10 May 2022 03:54:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/854ab192-36f1-4d3c-a436-91266212faa8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4fbd5f1e-ff81-48fa-9d42-7ef44171f9da?api-version=2016-03-30 pragma: - no-cache server: @@ -875,7 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml index f59f37a8add..e605a85a9ec 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:50:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:54:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:50:09 GMT + - Tue, 10 May 2022 03:54:37 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4wvw2u2gc-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjen7kcce3-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": - true}, "disableLocalAccounts": false}}' + true}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -67,39 +69,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1503' + - '1636' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4wvw2u2gc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4wvw2u2gc-8ecadf-ee62fdc8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"9dd056798f49ede1e5b0b986dc4745bf-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitest4wvw2u2gc-8ecadf-9480c725.c18aa809-823a-4f94-bd74-00a947381dd9.privatelink.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjen7kcce3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjen7kcce3-8ecadf-77237d50.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"1f13f060cc2f5e1df9f48d6fb7647d1e-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestjen7kcce3-8ecadf-411d2e8f.c6c0e5b8-c03f-4b35-950f-07d076ff9af1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -115,22 +117,24 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true,\n \"privateClusterVersion\": \"v1\"\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": + 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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3600' + - '3744' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:11 GMT + - Tue, 10 May 2022 03:54:41 GMT expires: - '-1' pragma: @@ -142,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -160,71 +164,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:50:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-private-cluster --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:11 GMT + - Tue, 10 May 2022 03:55:10 GMT expires: - '-1' pragma: @@ -256,23 +212,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:41 GMT + - Tue, 10 May 2022 03:55:41 GMT expires: - '-1' pragma: @@ -304,23 +260,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:11 GMT + - Tue, 10 May 2022 03:56:11 GMT expires: - '-1' pragma: @@ -352,23 +308,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:41 GMT + - Tue, 10 May 2022 03:56:41 GMT expires: - '-1' pragma: @@ -400,23 +356,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:11 GMT + - Tue, 10 May 2022 03:57:11 GMT expires: - '-1' pragma: @@ -448,23 +404,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:42 GMT + - Tue, 10 May 2022 03:57:41 GMT expires: - '-1' pragma: @@ -496,23 +452,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:12 GMT + - Tue, 10 May 2022 03:58:11 GMT expires: - '-1' pragma: @@ -544,23 +500,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:42 GMT + - Tue, 10 May 2022 03:58:41 GMT expires: - '-1' pragma: @@ -592,23 +548,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:12 GMT + - Tue, 10 May 2022 03:59:11 GMT expires: - '-1' pragma: @@ -640,23 +596,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:41 GMT + - Tue, 10 May 2022 03:59:42 GMT expires: - '-1' pragma: @@ -688,23 +644,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:12 GMT + - Tue, 10 May 2022 04:00:11 GMT expires: - '-1' pragma: @@ -736,23 +692,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:42 GMT + - Tue, 10 May 2022 04:00:41 GMT expires: - '-1' pragma: @@ -784,23 +740,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:12 GMT + - Tue, 10 May 2022 04:01:11 GMT expires: - '-1' pragma: @@ -832,23 +788,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:42 GMT + - Tue, 10 May 2022 04:01:41 GMT expires: - '-1' pragma: @@ -880,24 +836,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f179891b-6bad-46b8-9e10-a6e97bc79d71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/048d6fb3-9c48-44fd-ae30-a358f4dde716?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b8979f1-ad6b-b846-9e10-a6e97bc79d71\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:50:11.82Z\",\n \"endTime\": - \"2022-04-14T04:57:48.1863243Z\"\n }" + string: "{\n \"name\": \"b36f8d04-489c-fd44-ae30-a358f4dde716\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:54:41.1733333Z\",\n \"endTime\": + \"2022-05-10T04:01:52.5674904Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:13 GMT + - Tue, 10 May 2022 04:02:11 GMT expires: - '-1' pragma: @@ -929,40 +885,40 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4wvw2u2gc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4wvw2u2gc-8ecadf-ee62fdc8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"9dd056798f49ede1e5b0b986dc4745bf-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitest4wvw2u2gc-8ecadf-9480c725.c18aa809-823a-4f94-bd74-00a947381dd9.privatelink.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjen7kcce3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjen7kcce3-8ecadf-77237d50.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"1f13f060cc2f5e1df9f48d6fb7647d1e-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestjen7kcce3-8ecadf-411d2e8f.c6c0e5b8-c03f-4b35-950f-07d076ff9af1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/14ac9778-4279-4744-b3e7-4d2e0e23198c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/408eaa54-5afd-4d63-821d-5c25ba9b28aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -973,8 +929,8 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": @@ -985,11 +941,11 @@ interactions: cache-control: - no-cache content-length: - - '4450' + - '4408' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:13 GMT + - Tue, 10 May 2022 04:02:12 GMT expires: - '-1' pragma: @@ -1021,40 +977,40 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4wvw2u2gc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4wvw2u2gc-8ecadf-ee62fdc8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"9dd056798f49ede1e5b0b986dc4745bf-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitest4wvw2u2gc-8ecadf-9480c725.c18aa809-823a-4f94-bd74-00a947381dd9.privatelink.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjen7kcce3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjen7kcce3-8ecadf-77237d50.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"1f13f060cc2f5e1df9f48d6fb7647d1e-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestjen7kcce3-8ecadf-411d2e8f.c6c0e5b8-c03f-4b35-950f-07d076ff9af1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/14ac9778-4279-4744-b3e7-4d2e0e23198c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/408eaa54-5afd-4d63-821d-5c25ba9b28aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1065,8 +1021,8 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": @@ -1077,11 +1033,11 @@ interactions: cache-control: - no-cache content-length: - - '4450' + - '4408' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:13 GMT + - Tue, 10 May 2022 04:02:13 GMT expires: - '-1' pragma: @@ -1101,22 +1057,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitest4wvw2u2gc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestjen7kcce3-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/14ac9778-4279-4744-b3e7-4d2e0e23198c"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/408eaa54-5afd-4d63-821d-5c25ba9b28aa"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", "enablePrivateClusterPublicFQDN": false}, "identityProfile": {"kubeletidentity": @@ -1125,7 +1081,8 @@ interactions: "privateLinkResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management", "name": "management", "type": "Microsoft.ContainerService/managedClusters/privateLinkResources", "groupId": "management", "requiredMembers": ["management"]}], "disableLocalAccounts": - false, "securityProfile": {}}}' + false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {}, "fileCSIDriver": + {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1136,45 +1093,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2961' + - '3042' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4wvw2u2gc-8ecadf\",\n \"azurePortalFQDN\": \"9dd056798f49ede1e5b0b986dc4745bf-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitest4wvw2u2gc-8ecadf-9480c725.c18aa809-823a-4f94-bd74-00a947381dd9.privatelink.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjen7kcce3-8ecadf\",\n \"azurePortalFQDN\": \"1f13f060cc2f5e1df9f48d6fb7647d1e-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestjen7kcce3-8ecadf-411d2e8f.c6c0e5b8-c03f-4b35-950f-07d076ff9af1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/14ac9778-4279-4744-b3e7-4d2e0e23198c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/408eaa54-5afd-4d63-821d-5c25ba9b28aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1183,28 +1140,31 @@ interactions: 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-82/providers/Microsoft.Network/privateLinkServices/ab2d30bd93bd84f569e37eee0a44a712\"\n + \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-152/providers/Microsoft.Network/privateLinkServices/a7703091625474a5aa384eb79c060574\"\n \ }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4379' + - '4527' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:15 GMT + - Tue, 10 May 2022 04:02:16 GMT expires: - '-1' pragma: @@ -1220,7 +1180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 200 message: OK @@ -1238,14 +1198,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1254,7 +1214,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:45 GMT + - Tue, 10 May 2022 04:02:45 GMT expires: - '-1' pragma: @@ -1286,14 +1246,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1302,7 +1262,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:15 GMT + - Tue, 10 May 2022 04:03:15 GMT expires: - '-1' pragma: @@ -1334,14 +1294,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1350,7 +1310,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:45 GMT + - Tue, 10 May 2022 04:03:46 GMT expires: - '-1' pragma: @@ -1382,14 +1342,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1398,7 +1358,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:16 GMT + - Tue, 10 May 2022 04:04:16 GMT expires: - '-1' pragma: @@ -1430,14 +1390,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1446,7 +1406,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:45 GMT + - Tue, 10 May 2022 04:04:46 GMT expires: - '-1' pragma: @@ -1478,15 +1438,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/776964d0-2b37-4b8d-ae7c-ab045a356c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c853dbf3-974d-4e75-b162-3d714c2b7623?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0646977-372b-8d4b-ae7c-ab045a356c99\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:58:15.8033333Z\",\n \"endTime\": - \"2022-04-14T05:01:16.1281278Z\"\n }" + string: "{\n \"name\": \"f3db53c8-4d97-754e-b162-3d714c2b7623\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:02:16.0733333Z\",\n \"endTime\": + \"2022-05-10T04:05:04.9332865Z\"\n }" headers: cache-control: - no-cache @@ -1495,7 +1455,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:15 GMT + - Tue, 10 May 2022 04:05:16 GMT expires: - '-1' pragma: @@ -1527,39 +1487,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4wvw2u2gc-8ecadf\",\n \"azurePortalFQDN\": \"9dd056798f49ede1e5b0b986dc4745bf-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitest4wvw2u2gc-8ecadf-9480c725.c18aa809-823a-4f94-bd74-00a947381dd9.privatelink.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestjen7kcce3-8ecadf\",\n \"azurePortalFQDN\": \"1f13f060cc2f5e1df9f48d6fb7647d1e-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestjen7kcce3-8ecadf-411d2e8f.c6c0e5b8-c03f-4b35-950f-07d076ff9af1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/14ac9778-4279-4744-b3e7-4d2e0e23198c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/408eaa54-5afd-4d63-821d-5c25ba9b28aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1570,8 +1530,8 @@ interactions: \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": @@ -1582,11 +1542,11 @@ interactions: cache-control: - no-cache content-length: - - '4371' + - '4329' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:15 GMT + - Tue, 10 May 2022 04:05:16 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml index 72aa7979b94..3f556dfc9d7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml @@ -1,18 +1,20 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestem3pdi3vw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": false}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -23,39 +25,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1370' + - '1503' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -69,21 +71,23 @@ interactions: \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": false\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3159' + - '3338' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:20 GMT + - Tue, 10 May 2022 04:05:20 GMT expires: - '-1' pragma: @@ -114,23 +118,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:51 GMT + - Tue, 10 May 2022 04:05:51 GMT expires: - '-1' pragma: @@ -163,23 +167,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:21 GMT + - Tue, 10 May 2022 04:06:21 GMT expires: - '-1' pragma: @@ -212,23 +216,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:50 GMT + - Tue, 10 May 2022 04:06:51 GMT expires: - '-1' pragma: @@ -261,23 +265,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:20 GMT + - Tue, 10 May 2022 04:07:21 GMT expires: - '-1' pragma: @@ -310,23 +314,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:50 GMT + - Tue, 10 May 2022 04:07:51 GMT expires: - '-1' pragma: @@ -359,23 +363,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:20 GMT + - Tue, 10 May 2022 04:08:20 GMT expires: - '-1' pragma: @@ -408,23 +412,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:51 GMT + - Tue, 10 May 2022 04:08:51 GMT expires: - '-1' pragma: @@ -457,73 +461,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a654c8f4-ea3a-4be7-ba04-95f31d5811dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\"\n }" + string: "{\n \"name\": \"f4c854a6-3aea-e74b-ba04-95f31d5811dd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:05:21.2Z\",\n \"endTime\": + \"2022-05-10T04:09:04.4468704Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:05: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 --enable-managed-identity --enable-pod-identity - --network-plugin --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04058ade-29c1-4174-89b7-f060e9c57f1d?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"de8a0504-c129-7441-89b7-f060e9c57f1d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:01:20.94Z\",\n \"endTime\": - \"2022-04-14T05:05:42.3690139Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '165' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:51 GMT + - Tue, 10 May 2022 04:09:21 GMT expires: - '-1' pragma: @@ -556,32 +511,32 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -589,7 +544,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -607,11 +562,11 @@ interactions: cache-control: - no-cache content-length: - - '3812' + - '3805' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:51 GMT + - Tue, 10 May 2022 04:09:22 GMT expires: - '-1' pragma: @@ -643,32 +598,32 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -676,7 +631,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -694,11 +649,11 @@ interactions: cache-control: - no-cache content-length: - - '3812' + - '3805' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:52 GMT + - Tue, 10 May 2022 04:09:22 GMT expires: - '-1' pragma: @@ -718,15 +673,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestem3pdi3vw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": "Running"}, + "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -734,11 +689,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -749,38 +705,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2511' + - '2592' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -788,7 +744,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -797,21 +753,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + 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 },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecf6dcac-24b4-4cc0-9a19-cec4ed124e31?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5c8e49d-2e66-48cb-bbcc-8635918200d8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3746' + - '3928' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:55 GMT + - Tue, 10 May 2022 04:09:25 GMT expires: - '-1' pragma: @@ -827,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 200 message: OK @@ -845,23 +804,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecf6dcac-24b4-4cc0-9a19-cec4ed124e31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5c8e49d-2e66-48cb-bbcc-8635918200d8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acdcf6ec-b424-c04c-9a19-cec4ed124e31\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:55.43Z\"\n }" + string: "{\n \"name\": \"9de4c8d5-662e-cb48-bbcc-8635918200d8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:25.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:25 GMT + - Tue, 10 May 2022 04:09:55 GMT expires: - '-1' pragma: @@ -893,23 +852,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecf6dcac-24b4-4cc0-9a19-cec4ed124e31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5c8e49d-2e66-48cb-bbcc-8635918200d8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acdcf6ec-b424-c04c-9a19-cec4ed124e31\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:55.43Z\"\n }" + string: "{\n \"name\": \"9de4c8d5-662e-cb48-bbcc-8635918200d8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:25.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:55 GMT + - Tue, 10 May 2022 04:10:25 GMT expires: - '-1' pragma: @@ -941,24 +900,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecf6dcac-24b4-4cc0-9a19-cec4ed124e31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5c8e49d-2e66-48cb-bbcc-8635918200d8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acdcf6ec-b424-c04c-9a19-cec4ed124e31\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:05:55.43Z\",\n \"endTime\": - \"2022-04-14T05:07:08.865213Z\"\n }" + string: "{\n \"name\": \"9de4c8d5-662e-cb48-bbcc-8635918200d8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:09:25.5633333Z\",\n \"endTime\": + \"2022-05-10T04:10:38.6501384Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:25 GMT + - Tue, 10 May 2022 04:10:55 GMT expires: - '-1' pragma: @@ -990,32 +949,32 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1023,7 +982,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1040,11 +999,11 @@ interactions: cache-control: - no-cache content-length: - - '3748' + - '3741' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:26 GMT + - Tue, 10 May 2022 04:10:55 GMT expires: - '-1' pragma: @@ -1076,32 +1035,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1109,7 +1068,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1126,11 +1085,11 @@ interactions: cache-control: - no-cache content-length: - - '3748' + - '3741' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:26 GMT + - Tue, 10 May 2022 04:10:56 GMT expires: - '-1' pragma: @@ -1150,15 +1109,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestem3pdi3vw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": "Running"}, + "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": @@ -1167,11 +1126,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1182,38 +1142,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2578' + - '2659' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1221,7 +1181,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1230,22 +1190,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/020369bb-a93a-4c25-8ca3-800bb10325ad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16fa5b17-afa1-4dc3-9a9f-26001d4a6e0e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3770' + - '3952' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:28 GMT + - Tue, 10 May 2022 04:10:59 GMT expires: - '-1' pragma: @@ -1261,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' status: code: 200 message: OK @@ -1279,23 +1241,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/020369bb-a93a-4c25-8ca3-800bb10325ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16fa5b17-afa1-4dc3-9a9f-26001d4a6e0e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb690302-3aa9-254c-8ca3-800bb10325ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:28.98Z\"\n }" + string: "{\n \"name\": \"175bfa16-a1af-c34d-9a9f-26001d4a6e0e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:59.7366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:58 GMT + - Tue, 10 May 2022 04:11:29 GMT expires: - '-1' pragma: @@ -1327,23 +1289,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/020369bb-a93a-4c25-8ca3-800bb10325ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16fa5b17-afa1-4dc3-9a9f-26001d4a6e0e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb690302-3aa9-254c-8ca3-800bb10325ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:28.98Z\"\n }" + string: "{\n \"name\": \"175bfa16-a1af-c34d-9a9f-26001d4a6e0e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:59.7366666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:28 GMT + - Tue, 10 May 2022 04:11:59 GMT expires: - '-1' pragma: @@ -1375,24 +1337,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/020369bb-a93a-4c25-8ca3-800bb10325ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16fa5b17-afa1-4dc3-9a9f-26001d4a6e0e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb690302-3aa9-254c-8ca3-800bb10325ad\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:07:28.98Z\",\n \"endTime\": - \"2022-04-14T05:08:37.704411Z\"\n }" + string: "{\n \"name\": \"175bfa16-a1af-c34d-9a9f-26001d4a6e0e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:10:59.7366666Z\",\n \"endTime\": + \"2022-05-10T04:12:10.123356Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:58 GMT + - Tue, 10 May 2022 04:12:29 GMT expires: - '-1' pragma: @@ -1424,32 +1386,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1457,7 +1419,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1475,11 +1437,11 @@ interactions: cache-control: - no-cache content-length: - - '3772' + - '3765' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:59 GMT + - Tue, 10 May 2022 04:12:29 GMT expires: - '-1' pragma: @@ -1511,32 +1473,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1544,7 +1506,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1562,11 +1524,11 @@ interactions: cache-control: - no-cache content-length: - - '3772' + - '3765' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:59 GMT + - Tue, 10 May 2022 04:12:30 GMT expires: - '-1' pragma: @@ -1586,15 +1548,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestem3pdi3vw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": "Running"}, + "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": @@ -1604,7 +1566,7 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e"}]}, "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"}}, @@ -1619,38 +1581,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2684' + - '2677' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1658,7 +1620,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1670,21 +1632,23 @@ interactions: [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ad53a00-f8b4-4e54-bdf8-a1c59e33bc3d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1bab505-116f-4964-97be-ab9e72b37869?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3944' + - '4123' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:02 GMT + - Tue, 10 May 2022 04:12:33 GMT expires: - '-1' pragma: @@ -1700,7 +1664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1194' status: code: 200 message: OK @@ -1718,23 +1682,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ad53a00-f8b4-4e54-bdf8-a1c59e33bc3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1bab505-116f-4964-97be-ab9e72b37869?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"003ad51a-b4f8-544e-bdf8-a1c59e33bc3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:02.8233333Z\"\n }" + string: "{\n \"name\": \"05b5baa1-6f11-6449-97be-ab9e72b37869\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:33.02Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:32 GMT + - Tue, 10 May 2022 04:13:03 GMT expires: - '-1' pragma: @@ -1766,23 +1730,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ad53a00-f8b4-4e54-bdf8-a1c59e33bc3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1bab505-116f-4964-97be-ab9e72b37869?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"003ad51a-b4f8-544e-bdf8-a1c59e33bc3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:02.8233333Z\"\n }" + string: "{\n \"name\": \"05b5baa1-6f11-6449-97be-ab9e72b37869\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:33.02Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:02 GMT + - Tue, 10 May 2022 04:13:33 GMT expires: - '-1' pragma: @@ -1814,24 +1778,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ad53a00-f8b4-4e54-bdf8-a1c59e33bc3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1bab505-116f-4964-97be-ab9e72b37869?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"003ad51a-b4f8-544e-bdf8-a1c59e33bc3d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:09:02.8233333Z\",\n \"endTime\": - \"2022-04-14T05:10:18.9362901Z\"\n }" + string: "{\n \"name\": \"05b5baa1-6f11-6449-97be-ab9e72b37869\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:12:33.02Z\",\n \"endTime\": + \"2022-05-10T04:14:02.5858582Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:32 GMT + - Tue, 10 May 2022 04:14:02 GMT expires: - '-1' pragma: @@ -1863,32 +1827,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1896,7 +1860,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1916,11 +1880,11 @@ interactions: cache-control: - no-cache content-length: - - '3946' + - '3939' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:33 GMT + - Tue, 10 May 2022 04:14:03 GMT expires: - '-1' pragma: @@ -1952,32 +1916,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1985,7 +1949,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2005,11 +1969,11 @@ interactions: cache-control: - no-cache content-length: - - '3946' + - '3939' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:34 GMT + - Tue, 10 May 2022 04:14:04 GMT expires: - '-1' pragma: @@ -2029,15 +1993,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestem3pdi3vw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": "Running"}, + "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": @@ -2047,7 +2011,7 @@ interactions: false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e"}]}, "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"}}, @@ -2062,38 +2026,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2694' + - '2687' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2101,7 +2065,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2113,21 +2077,23 @@ interactions: [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n \ }\n ]\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec4f316c-12a0-4276-a9ad-ef388c89acd7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/834c6efb-6e67-47de-88c4-04cbc83e4489?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3961' + - '4140' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:36 GMT + - Tue, 10 May 2022 04:14:06 GMT expires: - '-1' pragma: @@ -2143,7 +2109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' status: code: 200 message: OK @@ -2161,23 +2127,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec4f316c-12a0-4276-a9ad-ef388c89acd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/834c6efb-6e67-47de-88c4-04cbc83e4489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c314fec-a012-7642-a9ad-ef388c89acd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:36.6366666Z\"\n }" + string: "{\n \"name\": \"fb6e4c83-676e-de47-88c4-04cbc83e4489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:07.27Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:06 GMT + - Tue, 10 May 2022 04:14:37 GMT expires: - '-1' pragma: @@ -2209,23 +2175,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec4f316c-12a0-4276-a9ad-ef388c89acd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/834c6efb-6e67-47de-88c4-04cbc83e4489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c314fec-a012-7642-a9ad-ef388c89acd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:36.6366666Z\"\n }" + string: "{\n \"name\": \"fb6e4c83-676e-de47-88c4-04cbc83e4489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:07.27Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:35 GMT + - Tue, 10 May 2022 04:15:07 GMT expires: - '-1' pragma: @@ -2257,24 +2223,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec4f316c-12a0-4276-a9ad-ef388c89acd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/834c6efb-6e67-47de-88c4-04cbc83e4489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c314fec-a012-7642-a9ad-ef388c89acd7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:10:36.6366666Z\",\n \"endTime\": - \"2022-04-14T05:11:47.3446684Z\"\n }" + string: "{\n \"name\": \"fb6e4c83-676e-de47-88c4-04cbc83e4489\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:14:07.27Z\",\n \"endTime\": + \"2022-05-10T04:15:30.074487Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:06 GMT + - Tue, 10 May 2022 04:15:36 GMT expires: - '-1' pragma: @@ -2306,32 +2272,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2339,7 +2305,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2359,11 +2325,11 @@ interactions: cache-control: - no-cache content-length: - - '3963' + - '3956' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:07 GMT + - Tue, 10 May 2022 04:15:37 GMT expires: - '-1' pragma: @@ -2395,32 +2361,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2428,7 +2394,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2448,11 +2414,11 @@ interactions: cache-control: - no-cache content-length: - - '3963' + - '3956' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:07 GMT + - Tue, 10 May 2022 04:15:38 GMT expires: - '-1' pragma: @@ -2472,15 +2438,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestem3pdi3vw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzifmiuqsp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": "Running"}, + "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": @@ -2489,7 +2455,7 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e"}]}, "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"}}, @@ -2504,38 +2470,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2603' + - '2596' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2543,7 +2509,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2552,22 +2518,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ed441a5-9198-4337-95ee-c8cc3cc62223?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0122cfc-1a10-46b9-b851-b11e9a869564?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3770' + - '3949' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:09 GMT + - Tue, 10 May 2022 04:15:40 GMT expires: - '-1' pragma: @@ -2583,7 +2551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1194' status: code: 200 message: OK @@ -2601,14 +2569,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ed441a5-9198-4337-95ee-c8cc3cc62223?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0122cfc-1a10-46b9-b851-b11e9a869564?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a541d46e-9891-3743-95ee-c8cc3cc62223\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:09.82Z\"\n }" + string: "{\n \"name\": \"fc2c12c0-101a-b946-b851-b11e9a869564\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:41.54Z\"\n }" headers: cache-control: - no-cache @@ -2617,7 +2585,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:39 GMT + - Tue, 10 May 2022 04:16:11 GMT expires: - '-1' pragma: @@ -2649,14 +2617,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ed441a5-9198-4337-95ee-c8cc3cc62223?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0122cfc-1a10-46b9-b851-b11e9a869564?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a541d46e-9891-3743-95ee-c8cc3cc62223\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:09.82Z\"\n }" + string: "{\n \"name\": \"fc2c12c0-101a-b946-b851-b11e9a869564\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:41.54Z\"\n }" headers: cache-control: - no-cache @@ -2665,7 +2633,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:09 GMT + - Tue, 10 May 2022 04:16:41 GMT expires: - '-1' pragma: @@ -2697,15 +2665,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ed441a5-9198-4337-95ee-c8cc3cc62223?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0122cfc-1a10-46b9-b851-b11e9a869564?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a541d46e-9891-3743-95ee-c8cc3cc62223\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:12:09.82Z\",\n \"endTime\": - \"2022-04-14T05:13:32.0033852Z\"\n }" + string: "{\n \"name\": \"fc2c12c0-101a-b946-b851-b11e9a869564\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:15:41.54Z\",\n \"endTime\": + \"2022-05-10T04:17:05.7024269Z\"\n }" headers: cache-control: - no-cache @@ -2714,7 +2682,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:40 GMT + - Tue, 10 May 2022 04:17:11 GMT expires: - '-1' pragma: @@ -2746,32 +2714,32 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestem3pdi3vw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestem3pdi3vw-8ecadf-244a6921.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzifmiuqsp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzifmiuqsp-8ecadf-767c89b8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2779,7 +2747,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b33b991f-6811-43db-9433-ea3019465f9b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cc63eaf4-c359-4026-a5da-bf5146da965e\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2797,11 +2765,11 @@ interactions: cache-control: - no-cache content-length: - - '3772' + - '3765' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:40 GMT + - Tue, 10 May 2022 04:17:12 GMT expires: - '-1' pragma: @@ -2835,26 +2803,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc441130-12c4-4cd7-b039-acccdea0599a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f939c8a8-0904-410c-8702-3bcbf42200fd?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:13:40 GMT + - Tue, 10 May 2022 04:17:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cc441130-12c4-4cd7-b039-acccdea0599a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f939c8a8-0904-410c-8702-3bcbf42200fd?api-version=2016-03-30 pragma: - no-cache server: @@ -2864,7 +2832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml index 96b702feed2..f2e820dbb03 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml @@ -8,12 +8,14 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$", "licenseType": "Windows_Server"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,7 +26,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1400' + - '1533' Content-Type: - application/json ParameterSetName: @@ -32,32 +34,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3b454944.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-3b454944.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d780082c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d780082c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -69,22 +71,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3047' + - '3226' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:03 GMT + - Tue, 10 May 2022 03:51:29 GMT expires: - '-1' pragma: @@ -96,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created @@ -116,223 +120,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:43: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --enable-ahub --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:44:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks 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 - --enable-ahub --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:44: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --enable-ahub --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:45: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --enable-ahub --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:33 GMT + - Tue, 10 May 2022 03:51:59 GMT expires: - '-1' pragma: @@ -366,23 +170,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:03 GMT + - Tue, 10 May 2022 03:52:29 GMT expires: - '-1' pragma: @@ -416,23 +220,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:34 GMT + - Tue, 10 May 2022 03:52:59 GMT expires: - '-1' pragma: @@ -466,23 +270,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:03 GMT + - Tue, 10 May 2022 03:53:29 GMT expires: - '-1' pragma: @@ -516,23 +320,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:33 GMT + - Tue, 10 May 2022 03:53:59 GMT expires: - '-1' pragma: @@ -566,24 +370,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66873f2-629b-42ee-8c8e-ef811c10e943?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb95376b-ecaa-4d0c-8907-936d66b5a57a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f27368a6-9b62-ee42-8c8e-ef811c10e943\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:43:03.58Z\",\n \"endTime\": - \"2022-04-14T04:47:40.9080753Z\"\n }" + string: "{\n \"name\": \"6b3795bb-aaec-0c4d-8907-936d66b5a57a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:51:29.6233333Z\",\n \"endTime\": + \"2022-05-10T03:54:05.041514Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:04 GMT + - Tue, 10 May 2022 03:54:29 GMT expires: - '-1' pragma: @@ -617,32 +421,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3b454944.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-3b454944.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d780082c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d780082c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -650,7 +454,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5645ab13-379b-4cd3-88a4-c2ba8c041de5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d5dc99c3-a1e3-44cd-81b5-89db0d13dd54\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -667,11 +471,11 @@ interactions: cache-control: - no-cache content-length: - - '3700' + - '3693' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:04 GMT + - Tue, 10 May 2022 03:54:29 GMT expires: - '-1' pragma: @@ -703,10 +507,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -716,20 +520,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:05 GMT + - Tue, 10 May 2022 03:54:30 GMT expires: - '-1' pragma: @@ -769,10 +573,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -782,21 +586,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:07 GMT + - Tue, 10 May 2022 03:54:33 GMT expires: - '-1' pragma: @@ -808,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -826,23 +630,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:37 GMT + - Tue, 10 May 2022 03:55:03 GMT expires: - '-1' pragma: @@ -874,23 +678,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:08 GMT + - Tue, 10 May 2022 03:55:33 GMT expires: - '-1' pragma: @@ -922,23 +726,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:37 GMT + - Tue, 10 May 2022 03:56:03 GMT expires: - '-1' pragma: @@ -970,23 +774,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:07 GMT + - Tue, 10 May 2022 03:56:33 GMT expires: - '-1' pragma: @@ -1018,23 +822,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:38 GMT + - Tue, 10 May 2022 03:57:03 GMT expires: - '-1' pragma: @@ -1066,23 +870,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:07 GMT + - Tue, 10 May 2022 03:57:33 GMT expires: - '-1' pragma: @@ -1114,23 +918,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:38 GMT + - Tue, 10 May 2022 03:58:04 GMT expires: - '-1' pragma: @@ -1162,23 +966,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:07 GMT + - Tue, 10 May 2022 03:58:34 GMT expires: - '-1' pragma: @@ -1210,23 +1014,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:38 GMT + - Tue, 10 May 2022 03:59:03 GMT expires: - '-1' pragma: @@ -1258,23 +1062,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:08 GMT + - Tue, 10 May 2022 03:59:33 GMT expires: - '-1' pragma: @@ -1306,23 +1110,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:38 GMT + - Tue, 10 May 2022 04:00:03 GMT expires: - '-1' pragma: @@ -1354,24 +1158,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/351821e2-0229-4726-9df0-2798f7b2c3f2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e19eb7af-5148-4a97-87b7-546f475bec74?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2211835-2902-2647-9df0-2798f7b2c3f2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:48:07.99Z\",\n \"endTime\": - \"2022-04-14T04:54:05.892808Z\"\n }" + string: "{\n \"name\": \"afb79ee1-4851-974a-87b7-546f475bec74\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:54:33.6733333Z\",\n \"endTime\": + \"2022-05-10T04:00:29.8472847Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:08 GMT + - Tue, 10 May 2022 04:00:34 GMT expires: - '-1' pragma: @@ -1403,10 +1207,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1416,19 +1220,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:08 GMT + - Tue, 10 May 2022 04:00:35 GMT expires: - '-1' pragma: @@ -1460,41 +1264,41 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3b454944.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-3b454944.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d780082c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d780082c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1502,7 +1306,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5645ab13-379b-4cd3-88a4-c2ba8c041de5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d5dc99c3-a1e3-44cd-81b5-89db0d13dd54\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1519,11 +1323,11 @@ interactions: cache-control: - no-cache content-length: - - '4405' + - '4391' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:09 GMT + - Tue, 10 May 2022 04:00:35 GMT expires: - '-1' pragma: @@ -1543,20 +1347,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "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", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "currentOrchestratorVersion": "1.21.9", "upgradeSettings": {}, "powerState": + "User", "orchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": "None", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", @@ -1564,11 +1368,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5645ab13-379b-4cd3-88a4-c2ba8c041de5"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d5dc99c3-a1e3-44cd-81b5-89db0d13dd54"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1579,47 +1384,47 @@ interactions: Connection: - keep-alive Content-Length: - - '2960' + - '3034' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3b454944.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-3b454944.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d780082c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d780082c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1627,7 +1432,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5645ab13-379b-4cd3-88a4-c2ba8c041de5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d5dc99c3-a1e3-44cd-81b5-89db0d13dd54\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1636,21 +1441,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4392' + - '4567' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:12 GMT + - Tue, 10 May 2022 04:00:38 GMT expires: - '-1' pragma: @@ -1666,7 +1474,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:01: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 @@ -1684,14 +1540,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1700,7 +1556,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:42 GMT + - Tue, 10 May 2022 04:01:38 GMT expires: - '-1' pragma: @@ -1732,14 +1588,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1748,7 +1604,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:12 GMT + - Tue, 10 May 2022 04:02:08 GMT expires: - '-1' pragma: @@ -1780,14 +1636,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1796,7 +1652,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:42 GMT + - Tue, 10 May 2022 04:02:39 GMT expires: - '-1' pragma: @@ -1828,14 +1684,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1844,7 +1700,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:12 GMT + - Tue, 10 May 2022 04:03:09 GMT expires: - '-1' pragma: @@ -1876,14 +1732,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1892,7 +1748,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:43 GMT + - Tue, 10 May 2022 04:03:39 GMT expires: - '-1' pragma: @@ -1924,14 +1780,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1940,7 +1796,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:13 GMT + - Tue, 10 May 2022 04:04:09 GMT expires: - '-1' pragma: @@ -1972,14 +1828,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -1988,7 +1844,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:43 GMT + - Tue, 10 May 2022 04:04:39 GMT expires: - '-1' pragma: @@ -2020,14 +1876,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2036,7 +1892,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:12 GMT + - Tue, 10 May 2022 04:05:09 GMT expires: - '-1' pragma: @@ -2068,14 +1924,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2084,7 +1940,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:42 GMT + - Tue, 10 May 2022 04:05:39 GMT expires: - '-1' pragma: @@ -2116,14 +1972,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2132,7 +1988,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:13 GMT + - Tue, 10 May 2022 04:06:09 GMT expires: - '-1' pragma: @@ -2164,14 +2020,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2180,7 +2036,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:43 GMT + - Tue, 10 May 2022 04:06:40 GMT expires: - '-1' pragma: @@ -2212,14 +2068,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2228,7 +2084,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:13 GMT + - Tue, 10 May 2022 04:07:09 GMT expires: - '-1' pragma: @@ -2260,14 +2116,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2276,7 +2132,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:43 GMT + - Tue, 10 May 2022 04:07:39 GMT expires: - '-1' pragma: @@ -2308,14 +2164,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2324,7 +2180,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:13 GMT + - Tue, 10 May 2022 04:08:09 GMT expires: - '-1' pragma: @@ -2356,14 +2212,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2372,7 +2228,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:43 GMT + - Tue, 10 May 2022 04:08:39 GMT expires: - '-1' pragma: @@ -2404,14 +2260,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2420,7 +2276,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:13 GMT + - Tue, 10 May 2022 04:09:09 GMT expires: - '-1' pragma: @@ -2452,14 +2308,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2468,7 +2324,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:44 GMT + - Tue, 10 May 2022 04:09:40 GMT expires: - '-1' pragma: @@ -2500,14 +2356,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2516,7 +2372,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:13 GMT + - Tue, 10 May 2022 04:10:10 GMT expires: - '-1' pragma: @@ -2548,14 +2404,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2564,7 +2420,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:43 GMT + - Tue, 10 May 2022 04:10:40 GMT expires: - '-1' pragma: @@ -2596,14 +2452,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2612,7 +2468,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:14 GMT + - Tue, 10 May 2022 04:11:10 GMT expires: - '-1' pragma: @@ -2644,14 +2500,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2660,7 +2516,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:44 GMT + - Tue, 10 May 2022 04:11:40 GMT expires: - '-1' pragma: @@ -2692,14 +2548,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2708,7 +2564,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:14 GMT + - Tue, 10 May 2022 04:12:11 GMT expires: - '-1' pragma: @@ -2740,14 +2596,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2756,7 +2612,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:44 GMT + - Tue, 10 May 2022 04:12:41 GMT expires: - '-1' pragma: @@ -2788,14 +2644,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2804,7 +2660,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:14 GMT + - Tue, 10 May 2022 04:13:11 GMT expires: - '-1' pragma: @@ -2836,14 +2692,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2852,7 +2708,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:44 GMT + - Tue, 10 May 2022 04:13:41 GMT expires: - '-1' pragma: @@ -2884,14 +2740,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\"\n }" headers: cache-control: - no-cache @@ -2900,7 +2756,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:15 GMT + - Tue, 10 May 2022 04:14:10 GMT expires: - '-1' pragma: @@ -2932,15 +2788,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd3742e3-661d-4bf9-9527-65d743f08d87?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52220ee4-9493-490f-99aa-09cd8977f0f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e34237fd-1d66-f94b-9527-65d743f08d87\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:54:12.8566666Z\",\n \"endTime\": - \"2022-04-14T05:07:23.2401124Z\"\n }" + string: "{\n \"name\": \"e40e2252-9394-0f49-99aa-09cd8977f0f7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:00:38.9666666Z\",\n \"endTime\": + \"2022-05-10T04:14:29.6361731Z\"\n }" headers: cache-control: - no-cache @@ -2949,7 +2805,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:44 GMT + - Tue, 10 May 2022 04:14:40 GMT expires: - '-1' pragma: @@ -2981,41 +2837,41 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3b454944.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-3b454944.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d780082c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d780082c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -3023,7 +2879,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5645ab13-379b-4cd3-88a4-c2ba8c041de5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d5dc99c3-a1e3-44cd-81b5-89db0d13dd54\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -3040,11 +2896,11 @@ interactions: cache-control: - no-cache content-length: - - '4395' + - '4381' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:45 GMT + - Tue, 10 May 2022 04:14:41 GMT expires: - '-1' pragma: @@ -3076,10 +2932,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3089,10 +2945,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -3100,20 +2956,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2686.220322\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1987' + - '1973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:45 GMT + - Tue, 10 May 2022 04:14:42 GMT expires: - '-1' pragma: @@ -3147,26 +3003,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57e0a721-7e04-4261-b15a-86bde2838ad7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b615bd2-dfbb-4fa3-a2e2-0485a19323b2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:07:46 GMT + - Tue, 10 May 2022 04:14:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/57e0a721-7e04-4261-b15a-86bde2838ad7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1b615bd2-dfbb-4fa3-a2e2-0485a19323b2?api-version=2016-03-30 pragma: - no-cache server: @@ -3176,7 +3032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3196,26 +3052,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/722b1a03-8e04-4383-af56-70bdd3cc6fcf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d5d5b87-4611-49a7-9613-a4e75310ce87?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:07:46 GMT + - Tue, 10 May 2022 04:14:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/722b1a03-8e04-4383-af56-70bdd3cc6fcf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2d5d5b87-4611-49a7-9613-a4e75310ce87?api-version=2016-03-30 pragma: - no-cache server: @@ -3225,7 +3081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14991' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml index eb2511fdfd0..63e3dcb21bc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml @@ -1,20 +1,21 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesteatcgucmj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzcyr2fpoc-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -25,39 +26,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1470' + - '1603' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteatcgucmj-8ecadf\",\n \"fqdn\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzcyr2fpoc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -70,21 +71,23 @@ interactions: [\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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3120' + - '3299' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:51 GMT + - Tue, 10 May 2022 04:14:48 GMT expires: - '-1' pragma: @@ -96,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -115,23 +118,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:21 GMT + - Tue, 10 May 2022 04:15:18 GMT expires: - '-1' pragma: @@ -164,23 +167,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:51 GMT + - Tue, 10 May 2022 04:15:47 GMT expires: - '-1' pragma: @@ -213,23 +216,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:21 GMT + - Tue, 10 May 2022 04:16:18 GMT expires: - '-1' pragma: @@ -262,23 +265,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:52 GMT + - Tue, 10 May 2022 04:16:47 GMT expires: - '-1' pragma: @@ -311,23 +314,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:21 GMT + - Tue, 10 May 2022 04:17:18 GMT expires: - '-1' pragma: @@ -360,23 +363,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:51 GMT + - Tue, 10 May 2022 04:17:48 GMT expires: - '-1' pragma: @@ -409,23 +412,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:22 GMT + - Tue, 10 May 2022 04:18:17 GMT expires: - '-1' pragma: @@ -458,24 +461,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ee6249b-b036-4127-98f5-6d75ba784bf6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b24e64e-36b0-2741-98f5-6d75ba784bf6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:07:51.62Z\",\n \"endTime\": - \"2022-04-14T05:11:37.0543923Z\"\n }" + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:51 GMT + - Tue, 10 May 2022 04:18:48 GMT expires: - '-1' pragma: @@ -508,39 +510,89 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2a69197-aeb1-4a80-8129-91d123d4d399?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9791a6b2-b1ae-804a-8129-91d123d4d399\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:14:48.1766666Z\",\n \"endTime\": + \"2022-05-10T04:18:49.9278299Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:19: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 --auto-upgrade-channel + --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteatcgucmj-8ecadf\",\n \"fqdn\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzcyr2fpoc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5a12dc7-b5e0-4929-97b9-70dd5556b0b2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc657554-a048-4d26-9b73-877ec1658974\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -559,11 +611,11 @@ interactions: cache-control: - no-cache content-length: - - '3773' + - '3766' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:52 GMT + - Tue, 10 May 2022 04:19:19 GMT expires: - '-1' pragma: @@ -595,39 +647,39 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteatcgucmj-8ecadf\",\n \"fqdn\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzcyr2fpoc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5a12dc7-b5e0-4929-97b9-70dd5556b0b2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc657554-a048-4d26-9b73-877ec1658974\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -646,11 +698,11 @@ interactions: cache-control: - no-cache content-length: - - '3773' + - '3766' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:53 GMT + - Tue, 10 May 2022 04:19:19 GMT expires: - '-1' pragma: @@ -670,27 +722,28 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesteatcgucmj-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestzcyr2fpoc-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5a12dc7-b5e0-4929-97b9-70dd5556b0b2"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc657554-a048-4d26-9b73-877ec1658974"}]}, "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", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -701,45 +754,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2509' + - '2590' Content-Type: - application/json ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteatcgucmj-8ecadf\",\n \"fqdn\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzcyr2fpoc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5a12dc7-b5e0-4929-97b9-70dd5556b0b2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc657554-a048-4d26-9b73-877ec1658974\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -750,21 +803,23 @@ interactions: \ \"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 - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7481c221-1bd1-427c-a3dd-4a8c4f075ad0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6206fc6-a82f-41fb-825b-69cf28c08690?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3772' + - '3954' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:55 GMT + - Tue, 10 May 2022 04:19:22 GMT expires: - '-1' pragma: @@ -798,14 +853,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7481c221-1bd1-427c-a3dd-4a8c4f075ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6206fc6-a82f-41fb-825b-69cf28c08690?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"21c28174-d11b-7c42-a3dd-4a8c4f075ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:55.6233333Z\"\n }" + string: "{\n \"name\": \"c66f20e6-2fa8-fb41-825b-69cf28c08690\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:19:22.6366666Z\"\n }" headers: cache-control: - no-cache @@ -814,7 +869,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:25 GMT + - Tue, 10 May 2022 04:19:51 GMT expires: - '-1' pragma: @@ -846,14 +901,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7481c221-1bd1-427c-a3dd-4a8c4f075ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6206fc6-a82f-41fb-825b-69cf28c08690?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"21c28174-d11b-7c42-a3dd-4a8c4f075ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:55.6233333Z\"\n }" + string: "{\n \"name\": \"c66f20e6-2fa8-fb41-825b-69cf28c08690\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:19:22.6366666Z\"\n }" headers: cache-control: - no-cache @@ -862,7 +917,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:55 GMT + - Tue, 10 May 2022 04:20:22 GMT expires: - '-1' pragma: @@ -894,15 +949,15 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7481c221-1bd1-427c-a3dd-4a8c4f075ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6206fc6-a82f-41fb-825b-69cf28c08690?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"21c28174-d11b-7c42-a3dd-4a8c4f075ad0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:11:55.6233333Z\",\n \"endTime\": - \"2022-04-14T05:13:12.3999743Z\"\n }" + string: "{\n \"name\": \"c66f20e6-2fa8-fb41-825b-69cf28c08690\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:19:22.6366666Z\",\n \"endTime\": + \"2022-05-10T04:20:33.0154025Z\"\n }" headers: cache-control: - no-cache @@ -911,7 +966,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:25 GMT + - Tue, 10 May 2022 04:20:52 GMT expires: - '-1' pragma: @@ -943,39 +998,39 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteatcgucmj-8ecadf\",\n \"fqdn\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteatcgucmj-8ecadf-dba3394f.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzcyr2fpoc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcyr2fpoc-8ecadf-3b7a4e75.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b5a12dc7-b5e0-4929-97b9-70dd5556b0b2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc657554-a048-4d26-9b73-877ec1658974\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -994,11 +1049,11 @@ interactions: cache-control: - no-cache content-length: - - '3774' + - '3767' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:26 GMT + - Tue, 10 May 2022 04:20:53 GMT expires: - '-1' pragma: @@ -1032,26 +1087,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad262043-1e4b-41f8-98e4-e60a06a5b9ee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2213f03d-6910-4ea7-b960-6fddd68ef818?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:13:26 GMT + - Tue, 10 May 2022 04:20:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ad262043-1e4b-41f8-98e4-e60a06a5b9ee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2213f03d-6910-4ea7-b960-6fddd68ef818?api-version=2016-03-30 pragma: - no-cache server: @@ -1061,7 +1116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultkms.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultkms.yaml index 532b9587de0..811e0733e01 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultkms.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultkms.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:44: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","date":"2022-05-10T04:20:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:33 GMT + - Tue, 10 May 2022 04:20:55 GMT expires: - '-1' pragma: @@ -59,7 +59,7 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstestidentity000004?api-version=2018-11-30 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:34 GMT + - Tue, 10 May 2022 04:20:55 GMT expires: - '-1' location: @@ -85,7 +85,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -103,12 +103,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:44: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","date":"2022-05-10T04:20:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -117,7 +117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:35 GMT + - Tue, 10 May 2022 04:20:56 GMT expires: - '-1' pragma: @@ -145,7 +145,7 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: @@ -161,7 +161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:34 GMT + - Tue, 10 May 2022 04:20:56 GMT expires: - '-1' pragma: @@ -185,7 +185,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -194,7 +194,7 @@ interactions: response: body: string: '{"odata.error":{"code":"Request_ResourceNotFound","message":{"lang":"en","value":"Resource - not found for the segment ''me''."},"requestId":"633c4efc-3f7e-4e10-b247-de7a9c5245da","date":"2022-04-14T04:44:36"}}' + not found for the segment ''me''."},"requestId":"b65a530d-7481-4558-b7b4-98af776d10a4","date":"2022-05-10T04:20:57"}}' headers: access-control-allow-origin: - '*' @@ -207,19 +207,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 14 Apr 2022 04:44:35 GMT + - Tue, 10 May 2022 04:20:56 GMT duration: - - '1019512' + - '969631' expires: - '-1' ocp-aad-diagnostics-server-name: - - sy0pgEuudn8LhV/Wwcr+pC3OPNvcA8XiR0mcgVIvccg= + - 1zZD+QG4TfLMztBergYr4rMwS+maxuQmrhImOucvvj8= ocp-aad-session-key: - - Pn50qJIFB93iDjXX0OeGva7may0cB4xX5xT7sUb8TN5oLuBf64YnuWLeAcpZxEUY9BLZtyrLqqdnNZ5TBb7nRGd_RvapExTQOHb488VcBSYQ1eU9K3_PpHnGo8QpTc4h.mwndHcoCAAvu5dn4vH_ibxzski9bn-l_eNkGeytGVpU + - T5mg2N3_izZK_erSPDRSvGOS0CugXIrigExjtIDSMmnPH5Or_iiC2tV61si2ZYqLVc45uqQ1vTeqhFFzw_LERiRlcajHvzufshcMVUCTIZ9UqSSCGzS-NZcsZ9wLKyBN.qNsgbXbMAgxuMXM2VEqDdrEjsxS7xuo3SsKnXX33B50 pragma: - no-cache request-id: - - 633c4efc-3f7e-4e10-b247-de7a9c5245da + - b65a530d-7481-4558-b7b4-98af776d10a4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -241,7 +241,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -262,19 +262,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 14 Apr 2022 04:44:35 GMT + - Tue, 10 May 2022 04:20:56 GMT duration: - - '946105' + - '968250' expires: - '-1' ocp-aad-diagnostics-server-name: - - fNJQLP+XgRrm+wVx1qc7dEY/m8VHKivWMsUXF78l0zo= + - iCCSn0RmmOzP1e/Zxtw4kIZAUSg0LK65f/Ys7XbvIC0= ocp-aad-session-key: - - dSyTiqo1XJLmB3zEls67L1HlmVxoq8e6HYXDrJT2mEYNzaByjTfGIjy7V8Nj0xQm7FcjyBrqEjsEDJcUlK4mTAYpD-CCgDIZVFO0ErnVvnNKiworw9VnGDWrT4_YKqP1.28QCGzLJ9sN-RNSsWyL4NXQ3k5UEz70evBAP_s6wBNg + - IOffGuXXse4rg0cv9iCJZ32S18AjxR7PX1ukxF2ehk8AEy01g8pdpMPGCMsGFzSxA8CTRqxWXTbLYV3WP3Arb5tAvIGr9nleBClXYLe-H5rRrNG1oSTaafD37Q8mus9_.b-IpFdJjHEWbrrNW5MnUtiVaCxUg6Cy01sXapYXzkr0 pragma: - no-cache request-id: - - eea29c52-4427-418f-be4d-ebcce3b1d272 + - ebc0d489-3376-4530-b897-e051d8f869af strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -311,12 +311,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T04:44:36.324Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T04:44:36.324Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:20:57.722Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:20:57.722Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:36 GMT + - Tue, 10 May 2022 04:20:58 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 x-ms-ratelimit-remaining-subscription-writes: - '1195' status: @@ -363,12 +363,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T04:44:36.324Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T04:44:36.324Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:20:57.722Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:20:57.722Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -377,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:06 GMT + - Tue, 10 May 2022 04:21:28 GMT expires: - '-1' pragma: @@ -395,7 +395,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 status: code: 200 message: OK @@ -413,7 +413,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-keys/4.5.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - azsdk-python-keyvault-keys/4.5.1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: POST uri: https://cliakstestkv000003.vault.azure.net/keys/kms/create?api-version=7.3 response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:07 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -441,11 +441,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.230.246.79;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=20.29.186.190;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.378.1 status: code: 401 message: Unauthorized @@ -463,12 +463,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-keys/4.5.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - azsdk-python-keyvault-keys/4.5.1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: POST uri: https://cliakstestkv000003.vault.azure.net/keys/kms/create?api-version=7.3 response: body: - string: '{"key":{"kid":"https://cliakstestkv000003.vault.azure.net/keys/kms/ee7a376f71ea45e6bb6b3c364bcc843b","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"xedH3D3o2GShY7t5ok8gsdWhq6m0dS_ZYR9_BzpTWWv09Odp0BALNDZymNp04RKp3rHtOzTHLmSqzNh1QFSTId_TDz3k5y3Q8sgTpw0d1u1tVpMtgXZqUX9DT1Lxadr7vRcLMJ3buG8ZioxAZ2bgWeK831z4wrHnq8niJ91hYszvXcFnieGruanCm-kDKZ8TBX5xymayrbPSnaCNF7egc8VpuCotNMm3uajPWSc3oTySK78Vy8b5YyuJXxbKInWiRv9grcLIVQdxJx5grvz2I5rhEgQwTNeeKgFycwdEHXoJV_j147GCGyb_Dson9ociNNRvWGlG6jTQ7X7qGs0pFQ","e":"AQAB"},"attributes":{"enabled":true,"created":1649911508,"updated":1649911508,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + string: '{"key":{"kid":"https://cliakstestkv000003.vault.azure.net/keys/kms/fe7d5c61f3d14631972bab6e2912f7a1","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vloPLU4kTOlxgQKUfk5VT18g9QiyotOfut_BprO0YEPl4-H99_a_qaCt0nV5rPdI0qCgtWWV_swrRj0ME3vgrIWCZH4W8E5Trq62rQvrQLRI69IbdB98Y5PMPkMwIk-QU_MjUZOeVS_ps4jmbtEts-PK9AWW_LinGMASxxs_GvVC3x5Z5wObtnxVjOktF9BiwsrdKMdRwqM6Z2uU96WUB16XKOFl2eo9SELNocxNMfKfEcgN9dhDgOqa23cq5VOaOUWPOdVmsPtAqM1YvRQE-F5c1T1DU6kvlbXV5c70yJFDxP7p3oim7bDfWaYVbIbMXy0wQa1587a8bIEjo5icXQ","e":"AQAB"},"attributes":{"enabled":true,"created":1652156489,"updated":1652156489,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: cache-control: - no-cache @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:07 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -487,11 +487,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.230.246.79;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=20.29.186.190;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.378.1 status: code: 200 message: OK @@ -509,12 +509,12 @@ interactions: ParameterSetName: - --resource-group --name --object-id --key-permissions -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T04:44:36.324Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T04:44:36.324Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:20:57.722Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:20:57.722Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -523,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:07 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -541,7 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 status: code: 200 message: OK @@ -570,12 +570,12 @@ interactions: ParameterSetName: - --resource-group --name --object-id --key-permissions -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T04:44:36.324Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T04:45:08.747Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["encrypt","decrypt"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:20:57.722Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:21:30.388Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["encrypt","decrypt"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -584,7 +584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:08 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -602,9 +602,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' status: code: 200 message: OK @@ -623,12 +623,12 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:44: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","date":"2022-05-10T04:20:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -637,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:45:08 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -654,20 +654,22 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004": - {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthlxu3srjm-8ecadf", + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpfp3qpe6g-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "securityProfile": {"azureKeyVaultKms": - {"enabled": true, "keyId": "https://cliakstestkv000003.vault.azure.net/keys/kms/ee7a376f71ea45e6bb6b3c364bcc843b"}}}}' + {"enabled": true, "keyId": "https://cliakstestkv000003.vault.azure.net/keys/kms/fe7d5c61f3d14631972bab6e2912f7a1"}}, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AzureKeyVaultKmsPreview @@ -680,39 +682,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1774' + - '1907' Content-Type: - application/json ParameterSetName: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlxu3srjm-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthlxu3srjm-8ecadf-ac2519bb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlxu3srjm-8ecadf-ac2519bb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpfp3qpe6g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpfp3qpe6g-8ecadf-538780c8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpfp3qpe6g-8ecadf-538780c8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -724,23 +726,25 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/ee7a376f71ea45e6bb6b3c364bcc843b\"\n - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n - \ },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/fe7d5c61f3d14631972bab6e2912f7a1\"\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 },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3314' + - '3493' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:12 GMT + - Tue, 10 May 2022 04:21:33 GMT expires: - '-1' pragma: @@ -773,23 +777,74 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:22: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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AzureKeyVaultKmsPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id + --aks-custom-headers --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:41 GMT + - Tue, 10 May 2022 04:22:33 GMT expires: - '-1' pragma: @@ -824,23 +879,23 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:11 GMT + - Tue, 10 May 2022 04:23:02 GMT expires: - '-1' pragma: @@ -875,23 +930,23 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:42 GMT + - Tue, 10 May 2022 04:23:32 GMT expires: - '-1' pragma: @@ -926,23 +981,23 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:11 GMT + - Tue, 10 May 2022 04:24:03 GMT expires: - '-1' pragma: @@ -977,23 +1032,23 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:42 GMT + - Tue, 10 May 2022 04:24:33 GMT expires: - '-1' pragma: @@ -1028,23 +1083,23 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:12 GMT + - Tue, 10 May 2022 04:25:03 GMT expires: - '-1' pragma: @@ -1079,24 +1134,24 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd7c72df-e9b6-4203-a98a-483b4eddb8af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3fcfdea-fb66-4a2c-b419-6577d08582de?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df727ccd-b6e9-0342-a98a-483b4eddb8af\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:45:11.94Z\",\n \"endTime\": - \"2022-04-14T04:48:18.7075882Z\"\n }" + string: "{\n \"name\": \"eafdfcd3-66fb-2c4a-b419-6577d08582de\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:21:33.4666666Z\",\n \"endTime\": + \"2022-05-10T04:25:27.4035605Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:42 GMT + - Tue, 10 May 2022 04:25:33 GMT expires: - '-1' pragma: @@ -1131,39 +1186,39 @@ interactions: - --resource-group --name --assign-identity --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlxu3srjm-8ecadf\",\n \"fqdn\": \"cliakstest-clitesthlxu3srjm-8ecadf-ac2519bb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlxu3srjm-8ecadf-ac2519bb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpfp3qpe6g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpfp3qpe6g-8ecadf-538780c8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpfp3qpe6g-8ecadf-538780c8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ca9978b2-e570-4601-8467-74980464ac15\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5b031659-8f6a-4493-b465-41db17caaed1\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1173,7 +1228,7 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/ee7a376f71ea45e6bb6b3c364bcc843b\"\n + {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/fe7d5c61f3d14631972bab6e2912f7a1\"\n \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n \ },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": @@ -1184,11 +1239,11 @@ interactions: cache-control: - no-cache content-length: - - '4086' + - '4079' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:42 GMT + - Tue, 10 May 2022 04:25:34 GMT expires: - '-1' pragma: @@ -1222,26 +1277,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/618002ac-ba94-407c-870a-207911ce036b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c544f4ce-746a-4a97-9165-fcd648840847?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:48:43 GMT + - Tue, 10 May 2022 04:25:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/618002ac-ba94-407c-870a-207911ce036b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c544f4ce-746a-4a97-9165-fcd648840847?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml index 115da905538..6bded799454 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:48:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:51:47Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:48:44 GMT + - Tue, 10 May 2022 03:51:47 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcouwtiq3u-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlkyee6h7j-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1543' + - '1676' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestcouwtiq3u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcouwtiq3u-8ecadf-d100e68d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcouwtiq3u-8ecadf-d100e68d.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlkyee6h7j-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlkyee6h7j-8ecadf-4b4b57f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlkyee6h7j-8ecadf-4b4b57f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,22 +114,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3249' + - '3428' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:47 GMT + - Tue, 10 May 2022 03:51:51 GMT expires: - '-1' pragma: @@ -139,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -157,14 +161,62 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:52: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 -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -173,7 +225,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:17 GMT + - Tue, 10 May 2022 03:52:51 GMT expires: - '-1' pragma: @@ -205,14 +257,14 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +273,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:47 GMT + - Tue, 10 May 2022 03:53:21 GMT expires: - '-1' pragma: @@ -253,14 +305,14 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +321,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:17 GMT + - Tue, 10 May 2022 03:53:51 GMT expires: - '-1' pragma: @@ -301,14 +353,14 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +369,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:48 GMT + - Tue, 10 May 2022 03:54:21 GMT expires: - '-1' pragma: @@ -349,14 +401,14 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +417,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:17 GMT + - Tue, 10 May 2022 03:54:52 GMT expires: - '-1' pragma: @@ -397,14 +449,14 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\"\n }" headers: cache-control: - no-cache @@ -413,7 +465,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:47 GMT + - Tue, 10 May 2022 03:55:22 GMT expires: - '-1' pragma: @@ -445,24 +497,24 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff0acfac-7786-4235-8a85-d5c818560b70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717f024e-402e-4907-b873-71d5fca4e511?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accf0aff-8677-3542-8a85-d5c818560b70\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:48:47.8133333Z\",\n \"endTime\": - \"2022-04-14T04:52:14.08593Z\"\n }" + string: "{\n \"name\": \"4e027f71-2e40-0749-b873-71d5fca4e511\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:51:51.6766666Z\",\n \"endTime\": + \"2022-05-10T03:55:33.047825Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:17 GMT + - Tue, 10 May 2022 03:55:52 GMT expires: - '-1' pragma: @@ -494,32 +546,32 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestcouwtiq3u-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcouwtiq3u-8ecadf-d100e68d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcouwtiq3u-8ecadf-d100e68d.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlkyee6h7j-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlkyee6h7j-8ecadf-4b4b57f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlkyee6h7j-8ecadf-4b4b57f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -530,7 +582,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a878e9bf-2025-41e5-bd4b-f746c251c8b0\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1885c31b-79b2-4b70-b12c-5cb738da86d5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -548,11 +600,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:18 GMT + - Tue, 10 May 2022 03:55:52 GMT expires: - '-1' pragma: @@ -586,26 +638,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ade0a3e-ec1d-46b9-b3a6-d78ed56c68c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d8c54e9-63d2-472e-bc9d-03f44e3343f9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:52:19 GMT + - Tue, 10 May 2022 03:55:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9ade0a3e-ec1d-46b9-b3a6-d78ed56c68c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9d8c54e9-63d2-472e-bc9d-03f44e3343f9?api-version=2016-03-30 pragma: - no-cache server: @@ -615,7 +667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml index 0c0005280ac..b9f55aab6c3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:40:36Z"},"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","date":"2022-05-10T03:55:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:40:36 GMT + - Tue, 10 May 2022 03:55:54 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjeyijsfps-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdnrav6rez-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1507' + - '1640' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjeyijsfps-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjeyijsfps-8ecadf-948f6de9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjeyijsfps-8ecadf-948f6de9.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdnrav6rez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdnrav6rez-8ecadf-0ab73390.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdnrav6rez-8ecadf-0ab73390.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,21 +114,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3207' + - '3386' content-type: - application/json date: - - Thu, 14 Apr 2022 04:40:40 GMT + - Tue, 10 May 2022 03:55:57 GMT expires: - '-1' pragma: @@ -138,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -156,23 +160,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:10 GMT + - Tue, 10 May 2022 03:56:27 GMT expires: - '-1' pragma: @@ -204,23 +208,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:41:39 GMT + - Tue, 10 May 2022 03:56:57 GMT expires: - '-1' pragma: @@ -252,23 +256,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:09 GMT + - Tue, 10 May 2022 03:57:27 GMT expires: - '-1' pragma: @@ -300,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:40 GMT + - Tue, 10 May 2022 03:57:57 GMT expires: - '-1' pragma: @@ -348,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:10 GMT + - Tue, 10 May 2022 03:58:28 GMT expires: - '-1' pragma: @@ -396,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:40 GMT + - Tue, 10 May 2022 03:58:58 GMT expires: - '-1' pragma: @@ -444,24 +448,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6e6d9b-e0c9-4e2f-8491-41eef0542fff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9afdf1ef-0ba5-4402-9ca6-a6e1ab153289?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b6d6e7a-c9e0-2f4e-8491-41eef0542fff\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:40:40.36Z\",\n \"endTime\": - \"2022-04-14T04:43:41.2554076Z\"\n }" + string: "{\n \"name\": \"eff1fd9a-a50b-0244-9ca6-a6e1ab153289\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:55:57.5333333Z\",\n \"endTime\": + \"2022-05-10T03:59:15.7899053Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:10 GMT + - Tue, 10 May 2022 03:59:27 GMT expires: - '-1' pragma: @@ -493,32 +497,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjeyijsfps-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjeyijsfps-8ecadf-948f6de9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjeyijsfps-8ecadf-948f6de9.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdnrav6rez-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdnrav6rez-8ecadf-0ab73390.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdnrav6rez-8ecadf-0ab73390.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -529,7 +533,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d8e828e-2089-41bd-9193-71d60ff46946\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/12c4f867-0c09-474b-bebd-34a7cce68f55\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -547,11 +551,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:10 GMT + - Tue, 10 May 2022 03:59:28 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml index 65579b042e7..80686c3ec2b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:44:11Z"},"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","date":"2022-05-10T03:51:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:44:12 GMT + - Tue, 10 May 2022 03:51:29 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbclkk753c-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgks6wju4c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1506' + - '1639' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbclkk753c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbclkk753c-8ecadf-cccfef35.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbclkk753c-8ecadf-cccfef35.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgks6wju4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgks6wju4c-8ecadf-e80842d0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgks6wju4c-8ecadf-e80842d0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -114,21 +116,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3206' + - '3385' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:14 GMT + - Tue, 10 May 2022 03:51:31 GMT expires: - '-1' pragma: @@ -140,7 +144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -159,23 +163,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:44 GMT + - Tue, 10 May 2022 03:52:01 GMT expires: - '-1' pragma: @@ -208,23 +212,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:14 GMT + - Tue, 10 May 2022 03:52:31 GMT expires: - '-1' pragma: @@ -257,23 +261,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:44 GMT + - Tue, 10 May 2022 03:53:01 GMT expires: - '-1' pragma: @@ -306,23 +310,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:15 GMT + - Tue, 10 May 2022 03:53:31 GMT expires: - '-1' pragma: @@ -355,23 +359,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:45 GMT + - Tue, 10 May 2022 03:54:01 GMT expires: - '-1' pragma: @@ -404,23 +408,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:14 GMT + - Tue, 10 May 2022 03:54:32 GMT expires: - '-1' pragma: @@ -453,24 +457,24 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fb5ad94-f6c6-46e6-b3e2-714895b78a7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff72faf-eb7b-4a80-97fe-7f8a70f4a2d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94adb56f-c6f6-e646-b3e2-714895b78a7e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:44:14.69Z\",\n \"endTime\": - \"2022-04-14T04:47:23.2703889Z\"\n }" + string: "{\n \"name\": \"af2ff7ef-7beb-804a-97fe-7f8a70f4a2d9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:51:31.9033333Z\",\n \"endTime\": + \"2022-05-10T03:54:45.6807953Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:46 GMT + - Tue, 10 May 2022 03:55:02 GMT expires: - '-1' pragma: @@ -503,32 +507,32 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbclkk753c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestbclkk753c-8ecadf-cccfef35.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbclkk753c-8ecadf-cccfef35.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgks6wju4c-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgks6wju4c-8ecadf-e80842d0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgks6wju4c-8ecadf-e80842d0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -539,7 +543,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/41f6fb6c-76d7-446c-a0b9-5f4bb2f3fa7d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54cf1106-cf51-46bd-80a3-6c47b23d51be\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -557,11 +561,11 @@ interactions: cache-control: - no-cache content-length: - - '4226' + - '4219' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:46 GMT + - Tue, 10 May 2022 03:55:03 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml index 59392fc60be..3fd682e75dc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml @@ -36,7 +36,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -466,7 +466,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -558,7 +558,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -627,7 +627,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\"\ @@ -1024,7 +1024,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\"\ @@ -1086,7 +1086,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml index e74a4789ae8..3e2023c5ce7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml @@ -1,20 +1,22 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4e4pdz7dt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcj3uzfa46-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "standard", "podCidrs": ["172.126.0.0/16"], "serviceCidrs": ["172.56.0.0/16"], "ipFamilies": - ["IPv4"]}, "disableLocalAccounts": false}}' + ["IPv4"]}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -25,39 +27,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1478' + - '1611' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4e4pdz7dt-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4e4pdz7dt-8ecadf-908fe028.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4e4pdz7dt-8ecadf-908fe028.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcj3uzfa46-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcj3uzfa46-8ecadf-ba203cd5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcj3uzfa46-8ecadf-ba203cd5.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -69,21 +71,24 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\"\n ],\n \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3065' + - '3244' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:40 GMT + - Tue, 10 May 2022 03:50:26 GMT expires: - '-1' pragma: @@ -95,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -114,23 +119,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:10 GMT + - Tue, 10 May 2022 03:50:56 GMT expires: - '-1' pragma: @@ -163,23 +168,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:40 GMT + - Tue, 10 May 2022 03:51:26 GMT expires: - '-1' pragma: @@ -212,23 +217,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:10 GMT + - Tue, 10 May 2022 03:51:56 GMT expires: - '-1' pragma: @@ -261,23 +266,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:40 GMT + - Tue, 10 May 2022 03:52:27 GMT expires: - '-1' pragma: @@ -310,23 +315,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:10 GMT + - Tue, 10 May 2022 03:52:57 GMT expires: - '-1' pragma: @@ -359,23 +364,23 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:40 GMT + - Tue, 10 May 2022 03:53:26 GMT expires: - '-1' pragma: @@ -408,24 +413,24 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d38d242-0134-49aa-a9a0-fbe4b549649a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f5dc564-d19c-4174-ad2e-3c79403be2a3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"42d2383d-3401-aa49-a9a0-fbe4b549649a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:42:40.47Z\",\n \"endTime\": - \"2022-04-14T04:46:05.637328Z\"\n }" + string: "{\n \"name\": \"64c55d6f-9cd1-7441-ad2e-3c79403be2a3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:50:26.8566666Z\",\n \"endTime\": + \"2022-05-10T03:53:44.2427044Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:11 GMT + - Tue, 10 May 2022 03:53:56 GMT expires: - '-1' pragma: @@ -458,39 +463,39 @@ interactions: - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4e4pdz7dt-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4e4pdz7dt-8ecadf-908fe028.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4e4pdz7dt-8ecadf-908fe028.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcj3uzfa46-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcj3uzfa46-8ecadf-ba203cd5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcj3uzfa46-8ecadf-ba203cd5.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/86c98766-0a4c-4cf2-b532-52c5d210bb2d\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/114b0ad5-fd05-4ce0-b246-ac507672559a\"\n \ }\n ]\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -500,19 +505,20 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"guardrailsProfile\": + {\n \"level\": \"Off\"\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3718' + - '3762' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:11 GMT + - Tue, 10 May 2022 03:53:57 GMT expires: - '-1' pragma: @@ -546,26 +552,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b1a2989-1cf8-411e-82b2-24332bcc6a0c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a301011-7f93-437f-912c-5d85c1e86d51?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:46:11 GMT + - Tue, 10 May 2022 03:53:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1b1a2989-1cf8-411e-82b2-24332bcc6a0c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1a301011-7f93-437f-912c-5d85c1e86d51?api-version=2016-03-30 pragma: - no-cache server: @@ -575,7 +581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml index 19a8a4a70f8..a177015318e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:42:31Z"},"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","date":"2022-05-10T03:53:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:42:31 GMT + - Tue, 10 May 2022 03:53:58 GMT expires: - '-1' pragma: @@ -44,19 +44,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwxupeqyue-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxfpqu5hy3-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 60, "osDiskType": "Ephemeral", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,39 +69,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1466' + - '1599' 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwxupeqyue-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwxupeqyue-8ecadf-de53269c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwxupeqyue-8ecadf-de53269c.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxfpqu5hy3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxfpqu5hy3-8ecadf-cb604797.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxfpqu5hy3-8ecadf-cb604797.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -111,21 +113,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3058' + - '3237' content-type: - application/json date: - - Thu, 14 Apr 2022 04:42:35 GMT + - Tue, 10 May 2022 03:54:02 GMT expires: - '-1' pragma: @@ -137,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -156,72 +160,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --vm-set-type -c --node-osdisk-type --node-osdisk-size - --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:43:34 GMT + - Tue, 10 May 2022 03:54:32 GMT expires: - '-1' pragma: @@ -254,23 +209,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:04 GMT + - Tue, 10 May 2022 03:55:02 GMT expires: - '-1' pragma: @@ -303,23 +258,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:44:34 GMT + - Tue, 10 May 2022 03:55:32 GMT expires: - '-1' pragma: @@ -352,23 +307,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:05 GMT + - Tue, 10 May 2022 03:56:02 GMT expires: - '-1' pragma: @@ -401,23 +356,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:45:34 GMT + - Tue, 10 May 2022 03:56:32 GMT expires: - '-1' pragma: @@ -450,23 +405,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:05 GMT + - Tue, 10 May 2022 03:57:02 GMT expires: - '-1' pragma: @@ -499,23 +454,23 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:35 GMT + - Tue, 10 May 2022 03:57:33 GMT expires: - '-1' pragma: @@ -548,24 +503,24 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c01b444-2059-4183-89a9-573e0fca13ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/675422fa-e803-4bb3-84c7-28dd64e4db73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44b4015c-5920-8341-89a9-573e0fca13ae\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:42:34.8466666Z\",\n \"endTime\": - \"2022-04-14T04:46:46.2974722Z\"\n }" + string: "{\n \"name\": \"fa225467-03e8-b34b-84c7-28dd64e4db73\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:54:02.61Z\",\n \"endTime\": + \"2022-05-10T03:57:39.3269452Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:04 GMT + - Tue, 10 May 2022 03:58:03 GMT expires: - '-1' pragma: @@ -598,39 +553,39 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwxupeqyue-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwxupeqyue-8ecadf-de53269c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwxupeqyue-8ecadf-de53269c.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxfpqu5hy3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxfpqu5hy3-8ecadf-cb604797.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxfpqu5hy3-8ecadf-cb604797.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7cadf105-304a-47cd-9fa1-6fcf35027190\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a2e6b797-89bf-48c4-9c71-262bd371d9d5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -648,11 +603,11 @@ interactions: cache-control: - no-cache content-length: - - '3711' + - '3704' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:05 GMT + - Tue, 10 May 2022 03:58:03 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml index 6a86b4e3e64..b1b5fbaf4a5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:47:06Z"},"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","date":"2022-05-10T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:07 GMT + - Tue, 10 May 2022 03:54:16 GMT expires: - '-1' pragma: @@ -43,18 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmxps6wgmn-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest52riwbcis-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": true, "name": "nodepool1"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -65,38 +67,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1418' + - '1551' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestmxps6wgmn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmxps6wgmn-8ecadf-3f78ba64.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestmxps6wgmn-8ecadf-3f78ba64.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest52riwbcis-8ecadf\",\n \"fqdn\": \"cliakstest-clitest52riwbcis-8ecadf-faec71a7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest52riwbcis-8ecadf-faec71a7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2022.03.29\",\n \"enableFIPS\": true\n + \"AKSUbuntu-1804gen2fipscontainerd-2022.04.19\",\n \"enableFIPS\": true\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3060' + - '3239' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:09 GMT + - Tue, 10 May 2022 03:54:19 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -152,23 +156,119 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:54: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 --enable-fips-image --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:55: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 --enable-fips-image --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:40 GMT + - Tue, 10 May 2022 03:55:50 GMT expires: - '-1' pragma: @@ -200,23 +300,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:10 GMT + - Tue, 10 May 2022 03:56:20 GMT expires: - '-1' pragma: @@ -248,23 +348,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:40 GMT + - Tue, 10 May 2022 03:56:50 GMT expires: - '-1' pragma: @@ -296,23 +396,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:09 GMT + - Tue, 10 May 2022 03:57:20 GMT expires: - '-1' pragma: @@ -344,23 +444,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:40 GMT + - Tue, 10 May 2022 03:57:50 GMT expires: - '-1' pragma: @@ -392,23 +492,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:10 GMT + - Tue, 10 May 2022 03:58:20 GMT expires: - '-1' pragma: @@ -440,24 +540,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a86555-7d73-4343-bc4e-9923976cee86?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5565a8b1-737d-4343-bc4e-9923976cee86\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:47:10.19Z\",\n \"endTime\": - \"2022-04-14T04:50:39.4166916Z\"\n }" + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:40 GMT + - Tue, 10 May 2022 03:58:50 GMT expires: - '-1' pragma: @@ -489,39 +588,136 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:59: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 --enable-fips-image --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b82ac9c5-433c-4955-88fb-0c8e57d80e08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c92ab8-3c43-5549-88fb-0c8e57d80e08\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:54:20.5166666Z\",\n \"endTime\": + \"2022-05-10T03:59:51.0975484Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:59:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestmxps6wgmn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmxps6wgmn-8ecadf-3f78ba64.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestmxps6wgmn-8ecadf-3f78ba64.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest52riwbcis-8ecadf\",\n \"fqdn\": \"cliakstest-clitest52riwbcis-8ecadf-faec71a7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest52riwbcis-8ecadf-faec71a7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2022.03.29\",\n \"enableFIPS\": true\n + \"AKSUbuntu-1804gen2fipscontainerd-2022.04.19\",\n \"enableFIPS\": true\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d21236a-6bd0-4af0-8903-7736be56a6a8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f192d95-b03e-4b65-9e74-e36e58adae77\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -539,11 +735,11 @@ interactions: cache-control: - no-cache content-length: - - '3713' + - '3706' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:40 GMT + - Tue, 10 May 2022 03:59:51 GMT expires: - '-1' pragma: @@ -575,10 +771,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -588,20 +784,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2022.04.19\",\n \ \"enableFIPS\": true\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1006' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:41 GMT + - Tue, 10 May 2022 03:59:52 GMT expires: - '-1' pragma: @@ -641,10 +837,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n @@ -654,22 +850,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2022.03.29\",\n \"upgradeSettings\": + \"AKSUbuntu-1804gen2fipscontainerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '942' + - '935' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:44 GMT + - Tue, 10 May 2022 03:59:54 GMT expires: - '-1' pragma: @@ -681,7 +877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -699,62 +895,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:51:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --enable-fips-image - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -763,7 +911,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:44 GMT + - Tue, 10 May 2022 04:00:24 GMT expires: - '-1' pragma: @@ -795,14 +943,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -811,7 +959,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:14 GMT + - Tue, 10 May 2022 04:00:55 GMT expires: - '-1' pragma: @@ -843,14 +991,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -859,7 +1007,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:44 GMT + - Tue, 10 May 2022 04:01:24 GMT expires: - '-1' pragma: @@ -891,14 +1039,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -907,7 +1055,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:14 GMT + - Tue, 10 May 2022 04:01:54 GMT expires: - '-1' pragma: @@ -939,14 +1087,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +1103,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:44 GMT + - Tue, 10 May 2022 04:02:25 GMT expires: - '-1' pragma: @@ -987,14 +1135,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\"\n }" headers: cache-control: - no-cache @@ -1003,7 +1151,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:15 GMT + - Tue, 10 May 2022 04:02:54 GMT expires: - '-1' pragma: @@ -1035,15 +1183,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e80b91e9-a0d1-4b60-9082-034769d6996a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acb27def-76e9-4b15-ae7c-df2a4e65fddf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e9910be8-d1a0-604b-9082-034769d6996a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:50:44.6866666Z\",\n \"endTime\": - \"2022-04-14T04:54:43.3649219Z\"\n }" + string: "{\n \"name\": \"ef7db2ac-e976-154b-ae7c-df2a4e65fddf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:59:54.8333333Z\",\n \"endTime\": + \"2022-05-10T04:03:12.5238538Z\"\n }" headers: cache-control: - no-cache @@ -1052,7 +1200,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:44 GMT + - Tue, 10 May 2022 04:03:25 GMT expires: - '-1' pragma: @@ -1084,10 +1232,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n @@ -1097,20 +1245,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2022.03.29\",\n \"upgradeSettings\": + \"AKSUbuntu-1804gen2fipscontainerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }" headers: cache-control: - no-cache content-length: - - '943' + - '936' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:45 GMT + - Tue, 10 May 2022 04:03:25 GMT expires: - '-1' pragma: @@ -1144,26 +1292,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ba24c09-d22c-46d6-9bc9-94c1daa5c6e1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0625717d-b89c-4cac-b9b8-3ef98cb22fce?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:54:46 GMT + - Tue, 10 May 2022 04:03:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3ba24c09-d22c-46d6-9bc9-94c1daa5c6e1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0625717d-b89c-4cac-b9b8-3ef98cb22fce?api-version=2016-03-30 pragma: - no-cache server: @@ -1173,7 +1321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14994' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml index 541d40caaea..d00d309454e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:46:12Z"},"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","date":"2022-05-10T04:03:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:46:14 GMT + - Tue, 10 May 2022 04:03:28 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestafxxfsum5-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestad3w6lefo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1445' + - '1578' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestafxxfsum5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestafxxfsum5-8ecadf-69686dae.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestafxxfsum5-8ecadf-69686dae.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestad3w6lefo-8ecadf\",\n \"fqdn\": \"cliakstest-clitestad3w6lefo-8ecadf-22e7c44a.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestad3w6lefo-8ecadf-22e7c44a.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n @@ -110,22 +112,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3145' + - '3324' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:21 GMT + - Tue, 10 May 2022 04:03:41 GMT expires: - '-1' pragma: @@ -137,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -155,23 +159,119 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:04:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- 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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:04: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 -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:46:51 GMT + - Tue, 10 May 2022 04:05:11 GMT expires: - '-1' pragma: @@ -203,23 +303,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:20 GMT + - Tue, 10 May 2022 04:05:41 GMT expires: - '-1' pragma: @@ -251,23 +351,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:51 GMT + - Tue, 10 May 2022 04:06:11 GMT expires: - '-1' pragma: @@ -299,23 +399,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:21 GMT + - Tue, 10 May 2022 04:06:41 GMT expires: - '-1' pragma: @@ -347,23 +447,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:51 GMT + - Tue, 10 May 2022 04:07:11 GMT expires: - '-1' pragma: @@ -395,23 +495,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:22 GMT + - Tue, 10 May 2022 04:07:42 GMT expires: - '-1' pragma: @@ -443,23 +543,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:52 GMT + - Tue, 10 May 2022 04:08:12 GMT expires: - '-1' pragma: @@ -491,24 +591,24 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9f549e90-c48e-4058-a25d-2bfe33fc3b5c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76fdbda3-8268-4268-a75b-df6d1277c822?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"909e549f-8ec4-5840-a25d-2bfe33fc3b5c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:46:20.9066666Z\",\n \"endTime\": - \"2022-04-14T04:50:01.9042834Z\"\n }" + string: "{\n \"name\": \"a3bdfd76-6882-6842-a75b-df6d1277c822\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:03:40.45Z\",\n \"endTime\": + \"2022-05-10T04:08:16.2467579Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:22 GMT + - Tue, 10 May 2022 04:08:42 GMT expires: - '-1' pragma: @@ -540,32 +640,32 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestafxxfsum5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestafxxfsum5-8ecadf-69686dae.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestafxxfsum5-8ecadf-69686dae.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestad3w6lefo-8ecadf\",\n \"fqdn\": \"cliakstest-clitestad3w6lefo-8ecadf-22e7c44a.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestad3w6lefo-8ecadf-22e7c44a.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": @@ -575,7 +675,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3bd0e1f5-43c6-45c7-b5a5-55b9d8e5ecfd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/9338839c-4ae9-4046-935d-fd71b21459ac\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -585,19 +685,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4150' + - '4329' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:22 GMT + - Tue, 10 May 2022 04:08:43 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml index c89ba39b97c..fd1b73ddd6b 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:50:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:50:25 GMT + - Tue, 10 May 2022 03:58:04 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesto4nk6binw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgtit37hwg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": true, "config": {"subnetCIDR": "10.232.0.0/16"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1508' + - '1641' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesto4nk6binw-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto4nk6binw-8ecadf-4841ef76.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesto4nk6binw-8ecadf-4841ef76.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgtit37hwg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgtit37hwg-8ecadf-511aba53.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgtit37hwg-8ecadf-511aba53.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -115,21 +117,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3426' + - '3605' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:28 GMT + - Tue, 10 May 2022 03:58:07 GMT expires: - '-1' pragma: @@ -141,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -160,14 +164,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +180,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:58 GMT + - Tue, 10 May 2022 03:58:37 GMT expires: - '-1' pragma: @@ -209,14 +213,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +229,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:28 GMT + - Tue, 10 May 2022 03:59:07 GMT expires: - '-1' pragma: @@ -258,14 +262,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +278,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:58 GMT + - Tue, 10 May 2022 03:59:37 GMT expires: - '-1' pragma: @@ -307,14 +311,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +327,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:27 GMT + - Tue, 10 May 2022 04:00:08 GMT expires: - '-1' pragma: @@ -356,14 +360,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +376,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:58 GMT + - Tue, 10 May 2022 04:00:37 GMT expires: - '-1' pragma: @@ -405,14 +409,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +425,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:28 GMT + - Tue, 10 May 2022 04:01:07 GMT expires: - '-1' pragma: @@ -454,15 +458,15 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e24f33b-1da4-4bf3-83fe-673fb9186b2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abe5f7f7-c091-4163-831d-7751d21c84ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bf3247e-a41d-f34b-83fe-673fb9186b2d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:50:28.3933333Z\",\n \"endTime\": - \"2022-04-14T04:53:38.3566608Z\"\n }" + string: "{\n \"name\": \"f7f7e5ab-91c0-6341-831d-7751d21c84ca\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:58:07.9133333Z\",\n \"endTime\": + \"2022-05-10T04:01:29.9824057Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:58 GMT + - Tue, 10 May 2022 04:01:38 GMT expires: - '-1' pragma: @@ -504,32 +508,32 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesto4nk6binw-8ecadf\",\n \"fqdn\": \"cliakstest-clitesto4nk6binw-8ecadf-4841ef76.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesto4nk6binw-8ecadf-4841ef76.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestgtit37hwg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgtit37hwg-8ecadf-511aba53.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgtit37hwg-8ecadf-511aba53.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -541,7 +545,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2916ebae-c6b2-473d-a4ba-47c1ac79b74f\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c08667cd-e9cc-4054-8a59-b5560f083c27\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -559,11 +563,11 @@ interactions: cache-control: - no-cache content-length: - - '4453' + - '4446' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:59 GMT + - Tue, 10 May 2022 04:01:38 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml index 76ae302f43a..bd6460d9d8c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:47:47Z"},"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","date":"2022-05-10T04:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:47:48 GMT + - Tue, 10 May 2022 04:01:39 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3xgvqajp3-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnwjic75uc-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": true, "config": {"subnetCIDR": "10.232.0.0/16"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -68,39 +70,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1508' + - '1641' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3xgvqajp3-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3xgvqajp3-8ecadf-36c3a209.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3xgvqajp3-8ecadf-36c3a209.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnwjic75uc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnwjic75uc-8ecadf-a4299418.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnwjic75uc-8ecadf-a4299418.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -115,21 +117,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3426' + - '3605' content-type: - application/json date: - - Thu, 14 Apr 2022 04:47:50 GMT + - Tue, 10 May 2022 04:01:42 GMT expires: - '-1' pragma: @@ -141,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -160,72 +164,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:48: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 --enable-managed-identity -a --appgw-subnet-prefix - --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:48:50 GMT + - Tue, 10 May 2022 04:02:12 GMT expires: - '-1' pragma: @@ -258,23 +213,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:21 GMT + - Tue, 10 May 2022 04:02:42 GMT expires: - '-1' pragma: @@ -307,23 +262,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:49:51 GMT + - Tue, 10 May 2022 04:03:13 GMT expires: - '-1' pragma: @@ -356,23 +311,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:21 GMT + - Tue, 10 May 2022 04:03:43 GMT expires: - '-1' pragma: @@ -405,23 +360,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:50:51 GMT + - Tue, 10 May 2022 04:04:12 GMT expires: - '-1' pragma: @@ -454,23 +409,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:21 GMT + - Tue, 10 May 2022 04:04:43 GMT expires: - '-1' pragma: @@ -503,24 +458,24 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f780d157-3cf3-44b2-85f8-c067ab8d0c0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64b7a7db-1d92-4a7f-86e7-68fe9a8bc312?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"57d180f7-f33c-b244-85f8-c067ab8d0c0e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:47:51.0533333Z\",\n \"endTime\": - \"2022-04-14T04:51:25.4657009Z\"\n }" + string: "{\n \"name\": \"dba7b764-921d-7f4a-86e7-68fe9a8bc312\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:01:42.88Z\",\n \"endTime\": + \"2022-05-10T04:05:00.7354217Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:51 GMT + - Tue, 10 May 2022 04:05:13 GMT expires: - '-1' pragma: @@ -553,32 +508,32 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3xgvqajp3-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3xgvqajp3-8ecadf-36c3a209.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3xgvqajp3-8ecadf-36c3a209.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnwjic75uc-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnwjic75uc-8ecadf-a4299418.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnwjic75uc-8ecadf-a4299418.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -590,7 +545,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd4a1cfe-b12d-437d-be5e-d7bd1280c59a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25f92482-7c08-437e-b8ca-f460e0d9812c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -608,11 +563,11 @@ interactions: cache-control: - no-cache content-length: - - '4453' + - '4446' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:52 GMT + - Tue, 10 May 2022 04:05:13 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml index 62fcee16b8f..847635f112b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:51:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T03:55:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:51:52 GMT + - Tue, 10 May 2022 03:55:05 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsyqud3coj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkfz6iodev-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskType": "Managed", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1444' + - '1577' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsyqud3coj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsyqud3coj-8ecadf-341a9f54.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsyqud3coj-8ecadf-341a9f54.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestkfz6iodev-8ecadf\",\n \"fqdn\": \"cliakstest-clitestkfz6iodev-8ecadf-623b0d24.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkfz6iodev-8ecadf-623b0d24.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 04:51:56 GMT + - Tue, 10 May 2022 03:55:09 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -153,23 +157,119 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:55: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 -c --node-osdisk-type --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 03:56:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:26 GMT + - Tue, 10 May 2022 03:56:39 GMT expires: - '-1' pragma: @@ -201,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:56 GMT + - Tue, 10 May 2022 03:57:09 GMT expires: - '-1' pragma: @@ -249,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:26 GMT + - Tue, 10 May 2022 03:57:38 GMT expires: - '-1' pragma: @@ -297,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:56 GMT + - Tue, 10 May 2022 03:58:09 GMT expires: - '-1' pragma: @@ -345,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:27 GMT + - Tue, 10 May 2022 03:58:39 GMT expires: - '-1' pragma: @@ -393,24 +493,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0737e1da-8a40-4f26-a4df-f12231512e47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fde44d85-eb39-4255-ae7d-dc2a2e7d341b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dae13707-408a-264f-a4df-f12231512e47\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:51:56.84Z\",\n \"endTime\": - \"2022-04-14T04:54:54.4156956Z\"\n }" + string: "{\n \"name\": \"854de4fd-39eb-5542-ae7d-dc2a2e7d341b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:55:09.2533333Z\",\n \"endTime\": + \"2022-05-10T03:58:41.7810245Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:57 GMT + - Tue, 10 May 2022 03:59:09 GMT expires: - '-1' pragma: @@ -442,39 +542,39 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsyqud3coj-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsyqud3coj-8ecadf-341a9f54.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsyqud3coj-8ecadf-341a9f54.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestkfz6iodev-8ecadf\",\n \"fqdn\": \"cliakstest-clitestkfz6iodev-8ecadf-623b0d24.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkfz6iodev-8ecadf-623b0d24.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/94d4aa58-8639-49ce-83ba-83630582cd4a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e35524a7-3046-4711-9b98-40e7d8e7d0b2\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:57 GMT + - Tue, 10 May 2022 03:59:09 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml index 4aaa783133d..24f54c7eab2 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml @@ -927,7 +927,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1307,7 +1307,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1727,7 +1727,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1893,7 +1893,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2177,7 +2177,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2266,7 +2266,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml index a253efd9b8a..3755ec217b7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml @@ -1021,7 +1021,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1450,7 +1450,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1871,7 +1871,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2039,7 +2039,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2372,7 +2372,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2462,7 +2462,7 @@ interactions: - AZURECLI/2.34.1 azsdk-python-azure-mgmt-containerservice/17.0.0b Python/3.8.10 (Linux-5.13.0-1017-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml index 8690b71d0a8..b792356e1c3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml @@ -14,21 +14,21 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:52:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T06:40:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '311' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:52:20 GMT + - Tue, 10 May 2022 06:40:23 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-EUS?api-version=2021-04-01 response: body: string: '' @@ -69,7 +69,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 04:52:20 GMT + - Tue, 10 May 2022 06:40:23 GMT expires: - '-1' pragma: @@ -96,35 +96,35 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-EUS?api-version=2015-11-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"8516f8af-d26c-4c80-b0c9-8237cfc0e379\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Mon, 09 May 2022 11:36:53 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 13 Apr 2022 20:13:41 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n - \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \"Enabled\",\r\n \"createdDate\": \"Sun, 11 Apr 2021 19:22:25 GMT\",\r\n + \ \"modifiedDate\": \"Tue, 10 May 2022 05:01:50 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-EUS\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": - \"westus2\"\r\n}" + \"eastus\"\r\n}" headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:20 GMT + - Tue, 10 May 2022 06:40:23 GMT pragma: - no-cache server: @@ -159,35 +159,35 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus?api-version=2015-11-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"8516f8af-d26c-4c80-b0c9-8237cfc0e379\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Mon, 09 May 2022 11:36:53 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 13 Apr 2022 20:13:41 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n - \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \"Enabled\",\r\n \"createdDate\": \"Sun, 11 Apr 2021 19:22:25 GMT\",\r\n + \ \"modifiedDate\": \"Tue, 10 May 2022 05:01:50 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-EUS\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": - \"westus2\"\r\n}" + \"eastus\"\r\n}" headers: cache-control: - no-cache content-length: - - '1159' + - '1155' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:20 GMT + - Tue, 10 May 2022 06:40:23 GMT pragma: - no-cache server: @@ -208,22 +208,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjaj2xw7mi-8ecadf", + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestr5qzi7nsl-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": - true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus", "useAADAuth": "False"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -234,45 +235,45 @@ interactions: Connection: - keep-alive Content-Length: - - '1724' + - '1861' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjaj2xw7mi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr5qzi7nsl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus\",\n \ \"useAADAuth\": \"False\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westcentralus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": @@ -281,21 +282,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3430' + - '3631' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:24 GMT + - Tue, 10 May 2022 06:40:29 GMT expires: - '-1' pragma: @@ -307,7 +310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -326,23 +329,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:52:53 GMT + - Tue, 10 May 2022 06:41:00 GMT expires: - '-1' pragma: @@ -375,23 +378,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:23 GMT + - Tue, 10 May 2022 06:41:30 GMT expires: - '-1' pragma: @@ -424,23 +427,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:53:53 GMT + - Tue, 10 May 2022 06:42:00 GMT expires: - '-1' pragma: @@ -473,23 +476,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:24 GMT + - Tue, 10 May 2022 06:42:30 GMT expires: - '-1' pragma: @@ -522,23 +525,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:54:54 GMT + - Tue, 10 May 2022 06:43:00 GMT expires: - '-1' pragma: @@ -571,23 +574,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:23 GMT + - Tue, 10 May 2022 06:43:31 GMT expires: - '-1' pragma: @@ -620,24 +623,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9100629a-caaf-4d13-8274-c793a9839efc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a620091-afca-134d-8274-c793a9839efc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:52:23.9966666Z\",\n \"endTime\": - \"2022-04-14T04:55:53.1114555Z\"\n }" + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:54 GMT + - Tue, 10 May 2022 06:44:00 GMT expires: - '-1' pragma: @@ -670,66 +672,118 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15455fa8-03e7-4484-9753-26f50ac17175?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a85f4515-e703-8444-9753-26f50ac17175\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:40:29.99Z\",\n \"endTime\": + \"2022-05-10T06:44:17.3724875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 10 May 2022 06:44: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 --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjaj2xw7mi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr5qzi7nsl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus\",\n \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-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 + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60ed1a1e-018e-452f-8986-d596750f077b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/b0d344a8-4871-4a02-949e-3c1d003f97bc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4440' + - '4659' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:54 GMT + - Tue, 10 May 2022 06:44:31 GMT expires: - '-1' pragma: @@ -762,8 +816,8 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -780,7 +834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:54 GMT + - Tue, 10 May 2022 06:44:31 GMT expires: - '-1' pragma: @@ -820,15 +874,15 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-addons --node-count --ssh-key-value User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a2ebdd24-6867-4989-9d3e-6d9c73d04ffb?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/d2ab533d-cc2d-4b99-a82b-48ca69f9fb2c?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:55:55.6297669Z","updatedOn":"2022-04-14T04:55:55.9110160Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a2ebdd24-6867-4989-9d3e-6d9c73d04ffb","type":"Microsoft.Authorization/roleAssignments","name":"a2ebdd24-6867-4989-9d3e-6d9c73d04ffb"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:44:32.1458259Z","updatedOn":"2022-05-10T06:44:32.4426321Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/d2ab533d-cc2d-4b99-a82b-48ca69f9fb2c","type":"Microsoft.Authorization/roleAssignments","name":"d2ab533d-cc2d-4b99-a82b-48ca69f9fb2c"}' headers: cache-control: - no-cache @@ -837,7 +891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:57 GMT + - Tue, 10 May 2022 06:44:34 GMT expires: - '-1' pragma: @@ -849,7 +903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -867,23 +921,23 @@ interactions: ParameterSetName: - --method --url User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus?api-version=2019-11-01-preview response: body: - string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"1400bd12-0000-0800-0000-6257a9230000\""}' + string: '{"properties":{"immutableId":"dcr-24af3f05d3c2405b86e25274b3b6d3e7","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus","workspaceId":"8516f8af-d26c-4c80-b0c9-8237cfc0e379","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus","type":"Microsoft.Insights/dataCollectionRules","etag":"\"b000a2b2-0000-0100-0000-627a08e00000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview cache-control: - no-cache content-length: - - '1725' + - '1719' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:58 GMT + - Tue, 10 May 2022 06:44:35 GMT expires: - '-1' pragma: @@ -917,66 +971,68 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjaj2xw7mi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr5qzi7nsl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-eus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-eus\",\n \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-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 + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60ed1a1e-018e-452f-8986-d596750f077b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/b0d344a8-4871-4a02-949e-3c1d003f97bc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4440' + - '4659' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:58 GMT + - Tue, 10 May 2022 06:44:35 GMT expires: - '-1' pragma: @@ -995,27 +1051,30 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestjaj2xw7mi-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.22.6", "dnsPrefix": "cliakstest-clitestr5qzi7nsl-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": - false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60ed1a1e-018e-452f-8986-d596750f077b"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/b0d344a8-4871-4a02-949e-3c1d003f97bc"}]}, "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", + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -1026,70 +1085,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2453' + - '2603' Content-Type: - application/json ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjaj2xw7mi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr5qzi7nsl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60ed1a1e-018e-452f-8986-d596750f077b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/b0d344a8-4871-4a02-949e-3c1d003f97bc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc3d7ad6-5309-4f16-a78e-bd3e2bf588e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e6fef725-f163-4751-99cb-6c6523645dad?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3803' + - '4018' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:00 GMT + - Tue, 10 May 2022 06:44:39 GMT expires: - '-1' pragma: @@ -1105,7 +1166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -1123,23 +1184,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc3d7ad6-5309-4f16-a78e-bd3e2bf588e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e6fef725-f163-4751-99cb-6c6523645dad?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d67a3dcc-0953-164f-a78e-bd3e2bf588e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:56:00.89Z\"\n }" + string: "{\n \"name\": \"25f7fee6-63f1-5147-99cb-6c6523645dad\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.3333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:30 GMT + - Tue, 10 May 2022 06:45:09 GMT expires: - '-1' pragma: @@ -1171,23 +1232,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc3d7ad6-5309-4f16-a78e-bd3e2bf588e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e6fef725-f163-4751-99cb-6c6523645dad?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d67a3dcc-0953-164f-a78e-bd3e2bf588e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:56:00.89Z\"\n }" + string: "{\n \"name\": \"25f7fee6-63f1-5147-99cb-6c6523645dad\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.3333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:00 GMT + - Tue, 10 May 2022 06:45:40 GMT expires: - '-1' pragma: @@ -1219,24 +1280,24 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc3d7ad6-5309-4f16-a78e-bd3e2bf588e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e6fef725-f163-4751-99cb-6c6523645dad?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d67a3dcc-0953-164f-a78e-bd3e2bf588e2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:56:00.89Z\",\n \"endTime\": - \"2022-04-14T04:57:16.6283122Z\"\n }" + string: "{\n \"name\": \"25f7fee6-63f1-5147-99cb-6c6523645dad\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:44:39.3333333Z\",\n \"endTime\": + \"2022-05-10T06:45:54.1390031Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:31 GMT + - Tue, 10 May 2022 06:46:10 GMT expires: - '-1' pragma: @@ -1268,62 +1329,64 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjaj2xw7mi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjaj2xw7mi-8ecadf-18bfe9b0.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestr5qzi7nsl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestr5qzi7nsl-8ecadf-1fff4163.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60ed1a1e-018e-452f-8986-d596750f077b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/b0d344a8-4871-4a02-949e-3c1d003f97bc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3805' + - '4020' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:31 GMT + - Tue, 10 May 2022 06:46:10 GMT expires: - '-1' pragma: @@ -1357,26 +1420,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/51a351cb-850a-4952-8b89-2b2dcd9537e0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/69fa5154-0e88-4697-a38d-e3cf50d9430e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:57:32 GMT + - Tue, 10 May 2022 06:46:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/51a351cb-850a-4952-8b89-2b2dcd9537e0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/69fa5154-0e88-4697-a38d-e3cf50d9430e?api-version=2016-03-30 pragma: - no-cache server: @@ -1386,7 +1449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml index 2bfb871bef9..b00b717f211 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml @@ -1,18 +1,19 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestc2ffla6p3-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7m75eorh5-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "none", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -23,16 +24,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1292' + - '1425' Content-Type: - application/json ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -40,21 +41,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestc2ffla6p3-79a739\",\n \"fqdn\": \"cliakstest-clitestc2ffla6p3-79a739-62e59ec5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc2ffla6p3-79a739-62e59ec5.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest7m75eorh5-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7m75eorh5-8ecadf-3d54cc4c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7m75eorh5-8ecadf-3d54cc4c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -65,21 +66,23 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2976' + - '3155' content-type: - application/json date: - - Tue, 26 Apr 2022 02:47:22 GMT + - Tue, 10 May 2022 04:04:50 GMT expires: - '-1' pragma: @@ -91,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -109,62 +112,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 02:47: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 --network-plugin --location --ssh-key-value -o - User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -173,7 +128,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:48:21 GMT + - Tue, 10 May 2022 04:05:20 GMT expires: - '-1' pragma: @@ -205,14 +160,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +176,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:48:51 GMT + - Tue, 10 May 2022 04:05:51 GMT expires: - '-1' pragma: @@ -253,14 +208,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +224,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:49:22 GMT + - Tue, 10 May 2022 04:06:21 GMT expires: - '-1' pragma: @@ -301,14 +256,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +272,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:49:52 GMT + - Tue, 10 May 2022 04:06:51 GMT expires: - '-1' pragma: @@ -349,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +320,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:50:22 GMT + - Tue, 10 May 2022 04:07:21 GMT expires: - '-1' pragma: @@ -397,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -413,7 +368,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:50:51 GMT + - Tue, 10 May 2022 04:07:51 GMT expires: - '-1' pragma: @@ -445,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -461,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:22 GMT + - Tue, 10 May 2022 04:08:21 GMT expires: - '-1' pragma: @@ -493,14 +448,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -509,7 +464,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:51:52 GMT + - Tue, 10 May 2022 04:08:51 GMT expires: - '-1' pragma: @@ -541,14 +496,14 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\"\n }" headers: cache-control: - no-cache @@ -557,7 +512,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:52:22 GMT + - Tue, 10 May 2022 04:09:21 GMT expires: - '-1' pragma: @@ -589,15 +544,15 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2aa27f15-9c11-470b-bd7a-a4992ed27c6d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/137db197-78ac-4271-a30d-9da572ed363d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"157fa22a-119c-0b47-bd7a-a4992ed27c6d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T02:47:21.9533333Z\",\n \"endTime\": - \"2022-04-26T02:52:41.8303943Z\"\n }" + string: "{\n \"name\": \"97b17d13-ac78-7142-a30d-9da572ed363d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:04:51.2133333Z\",\n \"endTime\": + \"2022-05-10T04:09:42.2762495Z\"\n }" headers: cache-control: - no-cache @@ -606,7 +561,7 @@ interactions: content-type: - application/json date: - - Tue, 26 Apr 2022 02:52:52 GMT + - Tue, 10 May 2022 04:09:52 GMT expires: - '-1' pragma: @@ -638,10 +593,10 @@ interactions: ParameterSetName: - --resource-group --name --network-plugin --location --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -649,28 +604,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestc2ffla6p3-79a739\",\n \"fqdn\": \"cliakstest-clitestc2ffla6p3-79a739-62e59ec5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc2ffla6p3-79a739-62e59ec5.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest7m75eorh5-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7m75eorh5-8ecadf-3d54cc4c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7m75eorh5-8ecadf-3d54cc4c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDEgOmo6b5e/B9hj+B1uPE1pHXBCVvj2GRh4Ccxs7CN+1bU8+MWy/fYYGRqNkcT+H596Sc4j3OrKdvtSII/IkDUZQCtmTPtJjF776uND/RLgVmQEsUpGoSfG9NXxptWNA7E6bN+ECNcf/UAO3ypIE8pUk3Rujj3d0KWjtXxVmfuCwvqL1vd4I4LGUGy4zqyUtuey2yaidw2CCDvBovd7sD2UwoNDIfYIgaeODRV32X+O9025kbz1A0Cg0wO7b709INBprHpXnoWyyx5DXHfzyNIW8g+fmTtb6UftvM4ockZr4Tdrlqo+5U1aoHEMfK18beHx6actkIlZBK1YxaX72TB + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\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_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bd939117-f9fe-4ebe-87e3-3f3051fbcc6e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/81278560-b7af-43d3-986a-ac4724e2dbf1\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -687,11 +642,11 @@ interactions: cache-control: - no-cache content-length: - - '3629' + - '3622' content-type: - application/json date: - - Tue, 26 Apr 2022 02:52:52 GMT + - Tue, 10 May 2022 04:09:52 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml index 601a602b0e3..75c37002784 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:54:58Z"},"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","date":"2022-05-10T04:09:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:54:58 GMT + - Tue, 10 May 2022 04:09:53 GMT expires: - '-1' pragma: @@ -44,7 +44,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcj3ogioj6-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwochhlwyu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", @@ -57,12 +57,14 @@ interactions: "32000 60000"}, "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", "swapFileSizeMB": 1500}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/CustomNodeConfigPreview @@ -75,33 +77,33 @@ interactions: Connection: - keep-alive Content-Length: - - '2001' + - '2134' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestcj3ogioj6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcj3ogioj6-8ecadf-182fb6c4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcj3ogioj6-8ecadf-182fb6c4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwochhlwyu-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwochhlwyu-8ecadf-50fd64b1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwochhlwyu-8ecadf-50fd64b1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.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\": @@ -114,10 +116,10 @@ interactions: \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -129,21 +131,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3804' + - '3983' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:01 GMT + - Tue, 10 May 2022 04:09:56 GMT expires: - '-1' pragma: @@ -155,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' status: code: 201 message: Created @@ -176,74 +180,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:55: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/CustomNodeConfigPreview - 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:01 GMT + - Tue, 10 May 2022 04:10:27 GMT expires: - '-1' pragma: @@ -278,23 +231,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:31 GMT + - Tue, 10 May 2022 04:10:57 GMT expires: - '-1' pragma: @@ -329,23 +282,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:01 GMT + - Tue, 10 May 2022 04:11:27 GMT expires: - '-1' pragma: @@ -380,23 +333,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:31 GMT + - Tue, 10 May 2022 04:11:56 GMT expires: - '-1' pragma: @@ -431,23 +384,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:01 GMT + - Tue, 10 May 2022 04:12:26 GMT expires: - '-1' pragma: @@ -482,23 +435,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:31 GMT + - Tue, 10 May 2022 04:12:57 GMT expires: - '-1' pragma: @@ -533,23 +486,23 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:02 GMT + - Tue, 10 May 2022 04:13:27 GMT expires: - '-1' pragma: @@ -584,24 +537,24 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c582879a-0888-40e4-86c5-f3eb7a05cab3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b1b1a0-abd9-47a3-9946-ee9cec6345f1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a8782c5-8808-e440-86c5-f3eb7a05cab3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:55:01.56Z\",\n \"endTime\": - \"2022-04-14T04:59:08.6931124Z\"\n }" + string: "{\n \"name\": \"a0b1b154-d9ab-a347-9946-ee9cec6345f1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:09:56.9866666Z\",\n \"endTime\": + \"2022-05-10T04:13:41.1623299Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:32 GMT + - Tue, 10 May 2022 04:13:57 GMT expires: - '-1' pragma: @@ -636,26 +589,26 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestcj3ogioj6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestcj3ogioj6-8ecadf-182fb6c4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcj3ogioj6-8ecadf-182fb6c4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwochhlwyu-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwochhlwyu-8ecadf-50fd64b1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwochhlwyu-8ecadf-50fd64b1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.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\": @@ -668,17 +621,17 @@ interactions: \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a6033f9f-06f6-4e81-96d3-29468cc25547\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/de1b7116-2465-4e7a-8bc7-14441f3cf537\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -696,11 +649,11 @@ interactions: cache-control: - no-cache content-length: - - '4457' + - '4450' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:32 GMT + - Tue, 10 May 2022 04:13:57 GMT expires: - '-1' pragma: @@ -733,10 +686,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -746,7 +699,7 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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 @@ -759,17 +712,17 @@ interactions: \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1757' + - '1750' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:32 GMT + - Tue, 10 May 2022 04:13:59 GMT expires: - '-1' pragma: @@ -819,10 +772,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -832,7 +785,7 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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\": @@ -844,19 +797,19 @@ interactions: \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1646' + - '1639' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:35 GMT + - Tue, 10 May 2022 04:14:02 GMT expires: - '-1' pragma: @@ -868,7 +821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -889,23 +842,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:06 GMT + - Tue, 10 May 2022 04:14:31 GMT expires: - '-1' pragma: @@ -940,23 +893,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:36 GMT + - Tue, 10 May 2022 04:15:02 GMT expires: - '-1' pragma: @@ -991,23 +944,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:06 GMT + - Tue, 10 May 2022 04:15:32 GMT expires: - '-1' pragma: @@ -1042,23 +995,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:36 GMT + - Tue, 10 May 2022 04:16:01 GMT expires: - '-1' pragma: @@ -1093,23 +1046,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:06 GMT + - Tue, 10 May 2022 04:16:31 GMT expires: - '-1' pragma: @@ -1144,23 +1097,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:36 GMT + - Tue, 10 May 2022 04:17:02 GMT expires: - '-1' pragma: @@ -1195,24 +1148,24 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5552871-0f69-4ce5-9871-10f2c5154d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32365e30-c942-40a8-9188-990d3fc30afa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"712855f5-690f-e54c-9871-10f2c5154d3f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:59:36.4Z\",\n \"endTime\": - \"2022-04-14T05:03:05.4670972Z\"\n }" + string: "{\n \"name\": \"305e3632-42c9-a840-9188-990d3fc30afa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:14:02.0933333Z\",\n \"endTime\": + \"2022-05-10T04:17:31.8984866Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:07 GMT + - Tue, 10 May 2022 04:17:31 GMT expires: - '-1' pragma: @@ -1247,10 +1200,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1260,7 +1213,7 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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\": @@ -1272,17 +1225,17 @@ interactions: \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1647' + - '1640' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:07 GMT + - Tue, 10 May 2022 04:17:32 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml index 0325536c8e7..277b844ef01 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml @@ -1,19 +1,21 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrlov3j7tq-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjfwozknvd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOBuyB2yCksc89QBBeUxdItVWYVgVtPcPiEKklVzBfDQ/H/1qz+zrVjLuXOY4hsWf9Dw1jxc5njPozuNrQ6BGhJt8bCV4YsxlP+W8EXRJI1cywenY1p70iR8npMn7C42lNYhAsBRfse66Tus/n3UvBSQAt5pCUFeEsUb5ATUVeW856Cul6ByMOSfOq+ppyS4Lap6X9LLWHiKtpfgVp2/RGkCou7wsBX90IbfNMZpZa0Lh+LS7ZJ0UhEyGq7LwULC70wcgOg2ZKATrApxMzkFf7WUH24qZmli4c/q9hhDSz1cwQeIDB7VIulK8rjVVB0j76xAcllEzURYmxuAKh+kf1 + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableOIDCIssuerPreview @@ -26,17 +28,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1592' 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.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -44,21 +46,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestrlov3j7tq-79a739\",\n \"fqdn\": \"cliakstest-clitestrlov3j7tq-79a739-b695fd01.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrlov3j7tq-79a739-b695fd01.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestjfwozknvd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjfwozknvd-8ecadf-f7dcbf82.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjfwozknvd-8ecadf-f7dcbf82.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDOBuyB2yCksc89QBBeUxdItVWYVgVtPcPiEKklVzBfDQ/H/1qz+zrVjLuXOY4hsWf9Dw1jxc5njPozuNrQ6BGhJt8bCV4YsxlP+W8EXRJI1cywenY1p70iR8npMn7C42lNYhAsBRfse66Tus/n3UvBSQAt5pCUFeEsUb5ATUVeW856Cul6ByMOSfOq+ppyS4Lap6X9LLWHiKtpfgVp2/RGkCou7wsBX90IbfNMZpZa0Lh+LS7ZJ0UhEyGq7LwULC70wcgOg2ZKATrApxMzkFf7WUH24qZmli4c/q9hhDSz1cwQeIDB7VIulK8rjVVB0j76xAcllEzURYmxuAKh+kf1 + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -70,22 +72,24 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/31dcaf97-742a-4c2f-b1a8-7a5305395de5/\"\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://oidc.prod-aks.azure.com/e1e3d8c0-c3bc-424d-ac11-eb2c9b745513/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3146' + - '3325' content-type: - application/json date: - - Tue, 26 Apr 2022 03:08:46 GMT + - Tue, 10 May 2022 03:59:16 GMT expires: - '-1' pragma: @@ -97,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -118,227 +122,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 03:09: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableOIDCIssuerPreview - 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.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 03:09: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableOIDCIssuerPreview - 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.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 03:10: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableOIDCIssuerPreview - 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.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 03:10: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableOIDCIssuerPreview - 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.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:11:17 GMT + - Tue, 10 May 2022 03:59:46 GMT expires: - '-1' pragma: @@ -373,23 +173,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:11:46 GMT + - Tue, 10 May 2022 04:00:16 GMT expires: - '-1' pragma: @@ -424,23 +224,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:12:16 GMT + - Tue, 10 May 2022 04:00:46 GMT expires: - '-1' pragma: @@ -475,23 +275,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:12:46 GMT + - Tue, 10 May 2022 04:01:16 GMT expires: - '-1' pragma: @@ -526,23 +326,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:13:17 GMT + - Tue, 10 May 2022 04:01:46 GMT expires: - '-1' pragma: @@ -577,23 +377,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 26 Apr 2022 03:13:47 GMT + - Tue, 10 May 2022 04:02:16 GMT expires: - '-1' pragma: @@ -628,24 +428,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3afe6f0d-9f51-451f-8a1f-66a85f240486?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ff334c4-366e-4ac9-a823-de0a9ff608d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d6ffe3a-519f-1f45-8a1f-66a85f240486\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T03:08:46.86Z\",\n \"endTime\": - \"2022-04-26T03:13:57.38754Z\"\n }" + string: "{\n \"name\": \"c434f32f-6e36-c94a-a823-de0a9ff608d3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:59:16.6Z\",\n \"endTime\": + \"2022-05-10T04:02:26.3996236Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '164' content-type: - application/json date: - - Tue, 26 Apr 2022 03:14:17 GMT + - Tue, 10 May 2022 04:02:47 GMT expires: - '-1' pragma: @@ -680,10 +480,10 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -691,28 +491,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestrlov3j7tq-79a739\",\n \"fqdn\": \"cliakstest-clitestrlov3j7tq-79a739-b695fd01.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrlov3j7tq-79a739-b695fd01.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestjfwozknvd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjfwozknvd-8ecadf-f7dcbf82.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjfwozknvd-8ecadf-f7dcbf82.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDOBuyB2yCksc89QBBeUxdItVWYVgVtPcPiEKklVzBfDQ/H/1qz+zrVjLuXOY4hsWf9Dw1jxc5njPozuNrQ6BGhJt8bCV4YsxlP+W8EXRJI1cywenY1p70iR8npMn7C42lNYhAsBRfse66Tus/n3UvBSQAt5pCUFeEsUb5ATUVeW856Cul6ByMOSfOq+ppyS4Lap6X9LLWHiKtpfgVp2/RGkCou7wsBX90IbfNMZpZa0Lh+LS7ZJ0UhEyGq7LwULC70wcgOg2ZKATrApxMzkFf7WUH24qZmli4c/q9hhDSz1cwQeIDB7VIulK8rjVVB0j76xAcllEzURYmxuAKh+kf1 + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b1ad0d1a-f624-42be-b529-2401ee7c1868\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2684fc5e-fffc-4852-9de7-2de321423b44\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -723,7 +523,7 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/31dcaf97-742a-4c2f-b1a8-7a5305395de5/\"\n + \"https://oidc.prod-aks.azure.com/e1e3d8c0-c3bc-424d-ac11-eb2c9b745513/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -731,11 +531,11 @@ interactions: cache-control: - no-cache content-length: - - '3799' + - '3792' content-type: - application/json date: - - Tue, 26 Apr 2022 03:14:18 GMT + - Tue, 10 May 2022 04:02:47 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml index 1bc70fed94b..87f54f78ed8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:58:49Z"},"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","date":"2022-05-10T04:02:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:58:49 GMT + - Tue, 10 May 2022 04:02:48 GMT expires: - '-1' pragma: @@ -44,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3au2zdjow-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxijh2tqac-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-OpenServiceMesh @@ -70,39 +72,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1469' + - '1602' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3au2zdjow-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3au2zdjow-8ecadf-f185327b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3au2zdjow-8ecadf-f185327b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxijh2tqac-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxijh2tqac-8ecadf-ee67e56e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxijh2tqac-8ecadf-ee67e56e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -115,22 +117,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3158' + - '3337' content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:52 GMT + - Tue, 10 May 2022 04:02:50 GMT expires: - '-1' pragma: @@ -142,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 201 message: Created @@ -163,65 +167,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:59: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/AKS-OpenServiceMesh - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --aks-custom-headers -a - --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +183,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:53 GMT + - Tue, 10 May 2022 04:03:20 GMT expires: - '-1' pragma: @@ -265,14 +218,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +234,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:22 GMT + - Tue, 10 May 2022 04:03:50 GMT expires: - '-1' pragma: @@ -316,14 +269,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +285,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:52 GMT + - Tue, 10 May 2022 04:04:20 GMT expires: - '-1' pragma: @@ -367,14 +320,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -383,7 +336,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:23 GMT + - Tue, 10 May 2022 04:04:51 GMT expires: - '-1' pragma: @@ -418,14 +371,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -434,7 +387,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:53 GMT + - Tue, 10 May 2022 04:05:21 GMT expires: - '-1' pragma: @@ -469,14 +422,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -485,7 +438,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:22 GMT + - Tue, 10 May 2022 04:05:51 GMT expires: - '-1' pragma: @@ -520,14 +473,14 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\"\n }" headers: cache-control: - no-cache @@ -536,7 +489,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:53 GMT + - Tue, 10 May 2022 04:06:21 GMT expires: - '-1' pragma: @@ -571,15 +524,15 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a0d33bf-eeff-4d24-adc5-1b3a08f4cc13?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f4a8f3-e490-4466-9207-d1e566b8830a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf330d6a-ffee-244d-adc5-1b3a08f4cc13\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:58:53.1733333Z\",\n \"endTime\": - \"2022-04-14T05:03:00.8061005Z\"\n }" + string: "{\n \"name\": \"f3a8f440-90e4-6644-9207-d1e566b8830a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:02:51.0733333Z\",\n \"endTime\": + \"2022-05-10T04:06:46.6287089Z\"\n }" headers: cache-control: - no-cache @@ -588,7 +541,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:23 GMT + - Tue, 10 May 2022 04:06:51 GMT expires: - '-1' pragma: @@ -623,32 +576,32 @@ interactions: - --resource-group --name --enable-managed-identity --aks-custom-headers -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3au2zdjow-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3au2zdjow-8ecadf-f185327b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3au2zdjow-8ecadf-f185327b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestxijh2tqac-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxijh2tqac-8ecadf-ee67e56e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxijh2tqac-8ecadf-ee67e56e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -658,7 +611,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37458bf7-d0b8-45c9-bdf1-328c5ce1e25a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/35251eb8-7ebc-4af9-98d6-9b66c86347a0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -676,11 +629,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:23 GMT + - Tue, 10 May 2022 04:06:51 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml index aaebd4b80b6..fd778f993a0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:58:58Z"},"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","date":"2022-05-10T03:59:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:58:58 GMT + - Tue, 10 May 2022 03:59:32 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestoxbltjv5m-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzi62buydk-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "osSKU": "CBLMariner", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,37 +68,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1442' + - '1575' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestoxbltjv5m-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoxbltjv5m-8ecadf-f3fd3d6e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestoxbltjv5m-8ecadf-f3fd3d6e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzi62buydk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzi62buydk-8ecadf-5ccadb4d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzi62buydk-8ecadf-5ccadb4d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2022.03.29\",\n \"enableFIPS\": false\n }\n ],\n + \"AKSCBLMariner-V1-2022.04.19\",\n \"enableFIPS\": false\n }\n ],\n \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3049' + - '3228' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:01 GMT + - Tue, 10 May 2022 03:59:36 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -152,14 +156,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +172,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:31 GMT + - Tue, 10 May 2022 04:00:06 GMT expires: - '-1' pragma: @@ -200,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +220,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:01 GMT + - Tue, 10 May 2022 04:00:36 GMT expires: - '-1' pragma: @@ -248,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:31 GMT + - Tue, 10 May 2022 04:01:06 GMT expires: - '-1' pragma: @@ -296,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:01 GMT + - Tue, 10 May 2022 04:01:36 GMT expires: - '-1' pragma: @@ -344,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:32 GMT + - Tue, 10 May 2022 04:02:06 GMT expires: - '-1' pragma: @@ -392,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +412,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:02 GMT + - Tue, 10 May 2022 04:02:36 GMT expires: - '-1' pragma: @@ -440,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\"\n }" headers: cache-control: - no-cache @@ -456,7 +460,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:32 GMT + - Tue, 10 May 2022 04:03:06 GMT expires: - '-1' pragma: @@ -488,15 +492,15 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8079ee37-4dad-4c44-9f5a-3881a558cf45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbbc2fdf-603a-4107-a6a3-556c652ee7ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ee7980-ad4d-444c-9f5a-3881a558cf45\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:59:01.7366666Z\",\n \"endTime\": - \"2022-04-14T05:02:40.3173201Z\"\n }" + string: "{\n \"name\": \"df2fbcdb-3a60-0741-a6a3-556c652ee7ab\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T03:59:36.5066666Z\",\n \"endTime\": + \"2022-05-10T04:03:07.4940147Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:01 GMT + - Tue, 10 May 2022 04:03:36 GMT expires: - '-1' pragma: @@ -537,38 +541,38 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestoxbltjv5m-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoxbltjv5m-8ecadf-f3fd3d6e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestoxbltjv5m-8ecadf-f3fd3d6e.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestzi62buydk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzi62buydk-8ecadf-5ccadb4d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzi62buydk-8ecadf-5ccadb4d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2022.03.29\",\n \"enableFIPS\": false\n }\n ],\n + \"AKSCBLMariner-V1-2022.04.19\",\n \"enableFIPS\": false\n }\n ],\n \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3906de53-badd-4b1c-a135-c2d196cf75ef\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5341e31f-8d28-40c7-bd78-6d9101aaf6d5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -586,11 +590,11 @@ interactions: cache-control: - no-cache content-length: - - '3702' + - '3695' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:01 GMT + - Tue, 10 May 2022 04:03:36 GMT expires: - '-1' pragma: @@ -624,26 +628,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29e0b340-d77d-484b-a7c8-bf8fd0808e92?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f1de5f4-53ee-4168-89bf-4152e5bbfa05?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:03:03 GMT + - Tue, 10 May 2022 04:03:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/29e0b340-d77d-484b-a7c8-bf8fd0808e92?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6f1de5f4-53ee-4168-89bf-4152e5bbfa05?api-version=2016-03-30 pragma: - no-cache server: @@ -653,7 +657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml index 0089cdc7866..b0ca0ef6c4e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml @@ -1,20 +1,22 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestslpl7ib4z-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -25,39 +27,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1495' + - '1628' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -70,21 +72,24 @@ interactions: [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3149' + - '3328' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:38 GMT + - Tue, 10 May 2022 04:03:42 GMT expires: - '-1' pragma: @@ -96,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -115,23 +120,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:08 GMT + - Tue, 10 May 2022 04:04:12 GMT expires: - '-1' pragma: @@ -164,23 +169,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:38 GMT + - Tue, 10 May 2022 04:04:42 GMT expires: - '-1' pragma: @@ -213,23 +218,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:08 GMT + - Tue, 10 May 2022 04:05:12 GMT expires: - '-1' pragma: @@ -262,23 +267,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:38 GMT + - Tue, 10 May 2022 04:05:42 GMT expires: - '-1' pragma: @@ -311,23 +316,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:08 GMT + - Tue, 10 May 2022 04:06:12 GMT expires: - '-1' pragma: @@ -360,23 +365,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:38 GMT + - Tue, 10 May 2022 04:06:43 GMT expires: - '-1' pragma: @@ -409,23 +414,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f12660-8e96-49ce-acb8-67703d37126c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\"\n }" + string: "{\n \"name\": \"6026f1b0-968e-ce49-acb8-67703d37126c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:03:42.7Z\",\n \"endTime\": + \"2022-05-10T04:07:08.8070637Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:09 GMT + - Tue, 10 May 2022 04:07:13 GMT expires: - '-1' pragma: @@ -458,89 +464,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/db9b319f-ad03-487b-994c-a44542504557?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"9f319bdb-03ad-7b48-994c-a44542504557\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:59:38.89Z\",\n \"endTime\": - \"2022-04-14T05:03:27.7849412Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '165' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 --enable-managed-identity --enable-pod-identity - --enable-pod-identity-with-kubenet --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -559,11 +515,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:39 GMT + - Tue, 10 May 2022 04:07:13 GMT expires: - '-1' pragma: @@ -595,39 +551,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -646,11 +602,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:40 GMT + - Tue, 10 May 2022 04:07:14 GMT expires: - '-1' pragma: @@ -670,26 +626,27 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestslpl7ib4z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -700,45 +657,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2499' + - '2580' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -748,21 +705,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + 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 },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8137268b-2880-424d-b290-cab27dd30fba?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0712d72d-f464-4cee-95b5-7d0eff6e7d54?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3737' + - '3919' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:42 GMT + - Tue, 10 May 2022 04:07:16 GMT expires: - '-1' pragma: @@ -778,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' status: code: 200 message: OK @@ -796,14 +756,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8137268b-2880-424d-b290-cab27dd30fba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0712d72d-f464-4cee-95b5-7d0eff6e7d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b263781-8028-4d42-b290-cab27dd30fba\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:42.3333333Z\"\n }" + string: "{\n \"name\": \"2dd71207-64f4-ee4c-95b5-7d0eff6e7d54\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:16.6133333Z\"\n }" headers: cache-control: - no-cache @@ -812,7 +772,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:11 GMT + - Tue, 10 May 2022 04:07:46 GMT expires: - '-1' pragma: @@ -844,14 +804,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8137268b-2880-424d-b290-cab27dd30fba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0712d72d-f464-4cee-95b5-7d0eff6e7d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b263781-8028-4d42-b290-cab27dd30fba\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:42.3333333Z\"\n }" + string: "{\n \"name\": \"2dd71207-64f4-ee4c-95b5-7d0eff6e7d54\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:16.6133333Z\"\n }" headers: cache-control: - no-cache @@ -860,7 +820,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:42 GMT + - Tue, 10 May 2022 04:08:16 GMT expires: - '-1' pragma: @@ -892,24 +852,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8137268b-2880-424d-b290-cab27dd30fba?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0712d72d-f464-4cee-95b5-7d0eff6e7d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b263781-8028-4d42-b290-cab27dd30fba\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:03:42.3333333Z\",\n \"endTime\": - \"2022-04-14T05:04:52.678026Z\"\n }" + string: "{\n \"name\": \"2dd71207-64f4-ee4c-95b5-7d0eff6e7d54\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:07:16.6133333Z\",\n \"endTime\": + \"2022-05-10T04:08:30.7554966Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:12 GMT + - Tue, 10 May 2022 04:08:46 GMT expires: - '-1' pragma: @@ -941,39 +901,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -991,11 +951,11 @@ interactions: cache-control: - no-cache content-length: - - '3739' + - '3732' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:12 GMT + - Tue, 10 May 2022 04:08:47 GMT expires: - '-1' pragma: @@ -1027,39 +987,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1077,11 +1037,11 @@ interactions: cache-control: - no-cache content-length: - - '3739' + - '3732' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:13 GMT + - Tue, 10 May 2022 04:08:48 GMT expires: - '-1' pragma: @@ -1101,15 +1061,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestslpl7ib4z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1117,11 +1077,12 @@ interactions: "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, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1132,45 +1093,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2601' + - '2682' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1181,21 +1142,24 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad185a93-ed1a-4d5c-9614-6c5d4e88e258?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29631af4-3203-48c4-9f82-ebdecd7baa41?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3800' + - '3982' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:15 GMT + - Tue, 10 May 2022 04:08:50 GMT expires: - '-1' pragma: @@ -1211,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 200 message: OK @@ -1229,14 +1193,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad185a93-ed1a-4d5c-9614-6c5d4e88e258?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29631af4-3203-48c4-9f82-ebdecd7baa41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"935a18ad-1aed-5c4d-9614-6c5d4e88e258\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:15.6333333Z\"\n }" + string: "{\n \"name\": \"f41a6329-0332-c448-9f82-ebdecd7baa41\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:50.2666666Z\"\n }" headers: cache-control: - no-cache @@ -1245,7 +1209,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:45 GMT + - Tue, 10 May 2022 04:09:19 GMT expires: - '-1' pragma: @@ -1277,14 +1241,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad185a93-ed1a-4d5c-9614-6c5d4e88e258?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29631af4-3203-48c4-9f82-ebdecd7baa41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"935a18ad-1aed-5c4d-9614-6c5d4e88e258\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:15.6333333Z\"\n }" + string: "{\n \"name\": \"f41a6329-0332-c448-9f82-ebdecd7baa41\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:50.2666666Z\"\n }" headers: cache-control: - no-cache @@ -1293,7 +1257,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:15 GMT + - Tue, 10 May 2022 04:09:50 GMT expires: - '-1' pragma: @@ -1325,15 +1289,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad185a93-ed1a-4d5c-9614-6c5d4e88e258?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29631af4-3203-48c4-9f82-ebdecd7baa41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"935a18ad-1aed-5c4d-9614-6c5d4e88e258\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:05:15.6333333Z\",\n \"endTime\": - \"2022-04-14T05:06:37.8093887Z\"\n }" + string: "{\n \"name\": \"f41a6329-0332-c448-9f82-ebdecd7baa41\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:08:50.2666666Z\",\n \"endTime\": + \"2022-05-10T04:10:01.0195358Z\"\n }" headers: cache-control: - no-cache @@ -1342,7 +1306,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:45 GMT + - Tue, 10 May 2022 04:10:20 GMT expires: - '-1' pragma: @@ -1374,39 +1338,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1425,11 +1389,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:45 GMT + - Tue, 10 May 2022 04:10:21 GMT expires: - '-1' pragma: @@ -1461,39 +1425,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1512,11 +1476,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:45 GMT + - Tue, 10 May 2022 04:10:20 GMT expires: - '-1' pragma: @@ -1536,15 +1500,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestslpl7ib4z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", @@ -1554,7 +1518,7 @@ interactions: "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/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805"}]}, "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"}}, @@ -1569,45 +1533,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2707' + - '2700' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1620,21 +1584,24 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7b1ac-8572-4ae2-930a-802138be6949?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/942de19c-ff1a-4206-b42e-d93ebf163a44?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3974' + - '4153' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:47 GMT + - Tue, 10 May 2022 04:10:23 GMT expires: - '-1' pragma: @@ -1650,7 +1617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -1668,14 +1635,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7b1ac-8572-4ae2-930a-802138be6949?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/942de19c-ff1a-4206-b42e-d93ebf163a44?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb1d7ee-7285-e24a-930a-802138be6949\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:48.6366666Z\"\n }" + string: "{\n \"name\": \"9ce12d94-1aff-0642-b42e-d93ebf163a44\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:23.8466666Z\"\n }" headers: cache-control: - no-cache @@ -1684,7 +1651,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:18 GMT + - Tue, 10 May 2022 04:10:54 GMT expires: - '-1' pragma: @@ -1716,14 +1683,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7b1ac-8572-4ae2-930a-802138be6949?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/942de19c-ff1a-4206-b42e-d93ebf163a44?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb1d7ee-7285-e24a-930a-802138be6949\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:48.6366666Z\"\n }" + string: "{\n \"name\": \"9ce12d94-1aff-0642-b42e-d93ebf163a44\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:23.8466666Z\"\n }" headers: cache-control: - no-cache @@ -1732,7 +1699,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:48 GMT + - Tue, 10 May 2022 04:11:24 GMT expires: - '-1' pragma: @@ -1764,24 +1731,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7b1ac-8572-4ae2-930a-802138be6949?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/942de19c-ff1a-4206-b42e-d93ebf163a44?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb1d7ee-7285-e24a-930a-802138be6949\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:06:48.6366666Z\",\n \"endTime\": - \"2022-04-14T05:08:03.458172Z\"\n }" + string: "{\n \"name\": \"9ce12d94-1aff-0642-b42e-d93ebf163a44\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:10:23.8466666Z\",\n \"endTime\": + \"2022-05-10T04:11:46.6401499Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:18 GMT + - Tue, 10 May 2022 04:11:54 GMT expires: - '-1' pragma: @@ -1813,39 +1780,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1866,11 +1833,11 @@ interactions: cache-control: - no-cache content-length: - - '3976' + - '3969' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:18 GMT + - Tue, 10 May 2022 04:11:54 GMT expires: - '-1' pragma: @@ -1902,39 +1869,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1955,11 +1922,11 @@ interactions: cache-control: - no-cache content-length: - - '3976' + - '3969' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:19 GMT + - Tue, 10 May 2022 04:11:55 GMT expires: - '-1' pragma: @@ -1979,15 +1946,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestslpl7ib4z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", @@ -1997,7 +1964,7 @@ interactions: "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/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805"}]}, "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"}}, @@ -2012,45 +1979,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2717' + - '2710' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2064,21 +2031,23 @@ interactions: \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n }\n ]\n \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efba6b51-8526-46c5-9751-2b67ad0c6071?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1ce608-7006-4d00-9060-c82d19483913?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3991' + - '4170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:21 GMT + - Tue, 10 May 2022 04:11:57 GMT expires: - '-1' pragma: @@ -2094,7 +2063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' status: code: 200 message: OK @@ -2112,23 +2081,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efba6b51-8526-46c5-9751-2b67ad0c6071?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1ce608-7006-4d00-9060-c82d19483913?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"516bbaef-2685-c546-9751-2b67ad0c6071\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:21.55Z\"\n }" + string: "{\n \"name\": \"08e61c4f-0670-004d-9060-c82d19483913\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:11:57.8166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:50 GMT + - Tue, 10 May 2022 04:12:27 GMT expires: - '-1' pragma: @@ -2160,23 +2129,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efba6b51-8526-46c5-9751-2b67ad0c6071?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1ce608-7006-4d00-9060-c82d19483913?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"516bbaef-2685-c546-9751-2b67ad0c6071\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:21.55Z\"\n }" + string: "{\n \"name\": \"08e61c4f-0670-004d-9060-c82d19483913\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:11:57.8166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:21 GMT + - Tue, 10 May 2022 04:12:57 GMT expires: - '-1' pragma: @@ -2208,24 +2177,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efba6b51-8526-46c5-9751-2b67ad0c6071?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1ce608-7006-4d00-9060-c82d19483913?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"516bbaef-2685-c546-9751-2b67ad0c6071\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:08:21.55Z\",\n \"endTime\": - \"2022-04-14T05:09:48.1831381Z\"\n }" + string: "{\n \"name\": \"08e61c4f-0670-004d-9060-c82d19483913\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:11:57.8166666Z\",\n \"endTime\": + \"2022-05-10T04:13:21.3089054Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:51 GMT + - Tue, 10 May 2022 04:13:27 GMT expires: - '-1' pragma: @@ -2257,39 +2226,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2311,11 +2280,11 @@ interactions: cache-control: - no-cache content-length: - - '3993' + - '3986' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:51 GMT + - Tue, 10 May 2022 04:13:27 GMT expires: - '-1' pragma: @@ -2347,39 +2316,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2401,11 +2370,11 @@ interactions: cache-control: - no-cache content-length: - - '3993' + - '3986' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:52 GMT + - Tue, 10 May 2022 04:13:28 GMT expires: - '-1' pragma: @@ -2425,15 +2394,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestslpl7ib4z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestdecvkrueb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "oidcIssuerProfile": {"enabled": @@ -2442,7 +2411,7 @@ interactions: "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/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805"}]}, "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"}}, @@ -2457,45 +2426,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2626' + - '2619' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2506,21 +2475,23 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8fa7dcf-bfc2-4453-8bc9-458dc69de9e7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f29e8ad-e194-4ffd-8cde-f77b8f51b362?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3800' + - '3979' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:54 GMT + - Tue, 10 May 2022 04:13:31 GMT expires: - '-1' pragma: @@ -2536,7 +2507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' status: code: 200 message: OK @@ -2554,23 +2525,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8fa7dcf-bfc2-4453-8bc9-458dc69de9e7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f29e8ad-e194-4ffd-8cde-f77b8f51b362?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf7dfaa8-c2bf-5344-8bc9-458dc69de9e7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:54.95Z\"\n }" + string: "{\n \"name\": \"ade8292f-94e1-fd4f-8cde-f77b8f51b362\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:31.8333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:24 GMT + - Tue, 10 May 2022 04:14:02 GMT expires: - '-1' pragma: @@ -2602,23 +2573,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8fa7dcf-bfc2-4453-8bc9-458dc69de9e7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f29e8ad-e194-4ffd-8cde-f77b8f51b362?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf7dfaa8-c2bf-5344-8bc9-458dc69de9e7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:54.95Z\"\n }" + string: "{\n \"name\": \"ade8292f-94e1-fd4f-8cde-f77b8f51b362\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:31.8333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:54 GMT + - Tue, 10 May 2022 04:14:31 GMT expires: - '-1' pragma: @@ -2650,24 +2621,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8fa7dcf-bfc2-4453-8bc9-458dc69de9e7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f29e8ad-e194-4ffd-8cde-f77b8f51b362?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf7dfaa8-c2bf-5344-8bc9-458dc69de9e7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:09:54.95Z\",\n \"endTime\": - \"2022-04-14T05:11:08.7032687Z\"\n }" + string: "{\n \"name\": \"ade8292f-94e1-fd4f-8cde-f77b8f51b362\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:13:31.8333333Z\",\n \"endTime\": + \"2022-05-10T04:14:55.2443916Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:24 GMT + - Tue, 10 May 2022 04:15:01 GMT expires: - '-1' pragma: @@ -2699,39 +2670,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestslpl7ib4z-8ecadf\",\n \"fqdn\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestslpl7ib4z-8ecadf-dda31acb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestdecvkrueb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdecvkrueb-8ecadf-d6520d37.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5bf57af-7a53-41a4-82d5-ccbbfb5d0665\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/07e0036a-f4f8-41db-8aad-2e8f11b50805\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2750,11 +2721,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:25 GMT + - Tue, 10 May 2022 04:15:01 GMT expires: - '-1' pragma: @@ -2788,26 +2759,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f412992-0a11-40f4-83a5-afe586c7d5f7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de4b9948-7789-4ffa-bbab-bcc1f78f9ded?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:11:26 GMT + - Tue, 10 May 2022 04:15:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4f412992-0a11-40f4-83a5-afe586c7d5f7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/de4b9948-7789-4ffa-bbab-bcc1f78f9ded?api-version=2016-03-30 pragma: - no-cache server: @@ -2817,7 +2788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14993' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml index c13dd73a82a..173306c1bec 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.10.3 - (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-05-06T05:25:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T06:40:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 06 May 2022 05:25:50 GMT + - Tue, 10 May 2022 06:40:23 GMT expires: - '-1' pragma: @@ -43,22 +42,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbxk2bzflp-8ecadf", + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2iec73oim-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "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, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": - true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": - true}}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -69,71 +68,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1887' + - '1558' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestbxk2bzflp-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestbxk2bzflp-8ecadf-472a55b2.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestbxk2bzflp-8ecadf-472a55b2.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ - ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ - ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"\ - loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \ - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n\ - \ \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ - : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ - : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ - : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n \ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest2iec73oim-8ecadf\",\n \"fqdn\": \"cliakstest-clitest2iec73oim-8ecadf-1113c5dd.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest2iec73oim-8ecadf-1113c5dd.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3260' content-type: - application/json date: - - Fri, 06 May 2022 05:26:02 GMT + - Tue, 10 May 2022 06:40:28 GMT expires: - '-1' pragma: @@ -163,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -179,7 +173,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:26:33 GMT + - Tue, 10 May 2022 06:40:59 GMT expires: - '-1' pragma: @@ -211,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +221,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:27:03 GMT + - Tue, 10 May 2022 06:41:29 GMT expires: - '-1' pragma: @@ -259,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +269,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:27:34 GMT + - Tue, 10 May 2022 06:41:59 GMT expires: - '-1' pragma: @@ -307,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +317,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:28:04 GMT + - Tue, 10 May 2022 06:42:29 GMT expires: - '-1' pragma: @@ -355,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +365,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:28:33 GMT + - Tue, 10 May 2022 06:42:59 GMT expires: - '-1' pragma: @@ -403,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\"\n }" headers: cache-control: - no-cache @@ -419,7 +413,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:29:04 GMT + - Tue, 10 May 2022 06:43:29 GMT expires: - '-1' pragma: @@ -451,111 +445,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/56065a9e-99b4-49ce-8a0d-b2dc74bce283?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Fri, 06 May 2022 05:29:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Fri, 06 May 2022 05:30:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6a78344d-89b1-4786-a0d5-caec979f9a5f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4d34786a-b189-8647-a0d5-caec979f9a5f\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-06T05:26:01.62Z\",\n \"endTime\"\ - : \"2022-05-06T05:30:13.9277507Z\"\n }" + string: "{\n \"name\": \"9e5a0656-b499-ce49-8a0d-b2dc74bce283\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:40:29.28Z\",\n \"endTime\": + \"2022-05-10T06:43:53.7284649Z\"\n }" headers: cache-control: - no-cache @@ -564,7 +462,7 @@ interactions: content-type: - application/json date: - - Fri, 06 May 2022 05:30:35 GMT + - Tue, 10 May 2022 06:43:59 GMT expires: - '-1' pragma: @@ -596,68 +494,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestbxk2bzflp-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestbxk2bzflp-8ecadf-472a55b2.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestbxk2bzflp-8ecadf-472a55b2.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+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 \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/2660b345-879f-404c-8287-d17e2f883c08\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"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 \ - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest2iec73oim-8ecadf\",\n \"fqdn\": \"cliakstest-clitest2iec73oim-8ecadf-1113c5dd.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest2iec73oim-8ecadf-1113c5dd.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/66d695dd-1e80-479e-aeaf-7af05cad8a56\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4261' + - '3925' content-type: - application/json date: - - Fri, 06 May 2022 05:30:36 GMT + - Tue, 10 May 2022 06:44:00 GMT expires: - '-1' pragma: @@ -691,26 +584,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0c0d927a-e083-4b8c-970c-bd326ebb7099?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/ac173ee7-6141-4db0-97b6-09bf986b9e80?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 06 May 2022 05:30:40 GMT + - Tue, 10 May 2022 06:44:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/0c0d927a-e083-4b8c-970c-bd326ebb7099?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/ac173ee7-6141-4db0-97b6-09bf986b9e80?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml index ff8fba14845..23a0e55d890 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:55:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:06:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:05 GMT + - Tue, 10 May 2022 04:06:53 GMT expires: - '-1' pragma: @@ -62,21 +62,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"5963b4a9-a0ec-4470-8e41-bd312263b86a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5ed7b8d5-3f98-42c8-a2db-85cc0369f40f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a7fd086d-b4a5-407a-a9d2-c9d722d53d10\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4449b476-cbdd-4267-8a03-752113d958e0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"5963b4a9-a0ec-4470-8e41-bd312263b86a\\\"\",\r\n + \ \"etag\": \"W/\\\"5ed7b8d5-3f98-42c8-a2db-85cc0369f40f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -87,7 +87,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b199c4d3-2631-48f3-b0a3-353b092053de?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6809be77-0df8-43d3-b365-69b63b1b4897?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:06 GMT + - Tue, 10 May 2022 04:06:53 GMT expires: - '-1' pragma: @@ -108,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04ffdef2-701e-4e42-9a04-d4d2eb3d36ba + - 9e7c5039-b2d1-44a4-8681-b262193d7e65 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -128,9 +128,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/b199c4d3-2631-48f3-b0a3-353b092053de?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6809be77-0df8-43d3-b365-69b63b1b4897?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:09 GMT + - Tue, 10 May 2022 04:06:56 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2323b12-4db5-4381-80dc-b6b40bcdf5bb + - 35022582-0d93-4831-b138-d2cd738726f3 status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"859f598e-d70e-434e-a840-0b7e1c96c207\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9d276005-9ab5-4720-83be-8ce894c0f3ce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a7fd086d-b4a5-407a-a9d2-c9d722d53d10\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4449b476-cbdd-4267-8a03-752113d958e0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"859f598e-d70e-434e-a840-0b7e1c96c207\\\"\",\r\n + \ \"etag\": \"W/\\\"9d276005-9ab5-4720-83be-8ce894c0f3ce\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -206,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:09 GMT + - Tue, 10 May 2022 04:06:56 GMT etag: - - W/"859f598e-d70e-434e-a840-0b7e1c96c207" + - W/"9d276005-9ab5-4720-83be-8ce894c0f3ce" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e5d2804-b97f-4b79-b099-ec71fe7435a7 + - cfa20354-80af-462b-a062-a15e12dfcf47 status: code: 200 message: OK @@ -243,21 +243,21 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"859f598e-d70e-434e-a840-0b7e1c96c207\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9d276005-9ab5-4720-83be-8ce894c0f3ce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a7fd086d-b4a5-407a-a9d2-c9d722d53d10\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4449b476-cbdd-4267-8a03-752113d958e0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"859f598e-d70e-434e-a840-0b7e1c96c207\\\"\",\r\n + \ \"etag\": \"W/\\\"9d276005-9ab5-4720-83be-8ce894c0f3ce\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -272,9 +272,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:08 GMT + - Tue, 10 May 2022 04:06:57 GMT etag: - - W/"859f598e-d70e-434e-a840-0b7e1c96c207" + - W/"9d276005-9ab5-4720-83be-8ce894c0f3ce" expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d5696f3-7e0c-4f3b-81a3-8238e6297fd5 + - 3845456c-30bd-4289-8cdf-44b14ef92227 status: code: 200 message: OK @@ -321,28 +321,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"6c2326bf-015a-4fd7-92f4-2624747a5f2a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"242a189c-151b-4128-a589-953e9b0fb762\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a7fd086d-b4a5-407a-a9d2-c9d722d53d10\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4449b476-cbdd-4267-8a03-752113d958e0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"6c2326bf-015a-4fd7-92f4-2624747a5f2a\\\"\",\r\n + \ \"etag\": \"W/\\\"242a189c-151b-4128-a589-953e9b0fb762\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"aci-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aci-subnet\",\r\n - \ \"etag\": \"W/\\\"6c2326bf-015a-4fd7-92f4-2624747a5f2a\\\"\",\r\n + \ \"etag\": \"W/\\\"242a189c-151b-4128-a589-953e9b0fb762\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/00016b11-6168-4057-beab-542f450c5388?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b48f343-140a-455d-8323-b6a1dab68643?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:10 GMT + - Tue, 10 May 2022 04:06:59 GMT expires: - '-1' pragma: @@ -378,9 +378,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 320eba18-9a24-40db-aa9e-69b09ec661bc + - 85531941-ba2d-473f-a0ed-fa2dbe88ceea x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK @@ -398,9 +398,9 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/00016b11-6168-4057-beab-542f450c5388?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b48f343-140a-455d-8323-b6a1dab68643?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:13 GMT + - Tue, 10 May 2022 04:07:02 GMT expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fec9ae0d-22a6-42e0-b47a-f792f76a72ec + - e5834325-336c-4c93-b1fb-fe98ac44cee8 status: code: 200 message: OK @@ -447,28 +447,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"33986cb6-9bf1-40d6-8493-5c054ce20072\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3c1f4539-c766-487d-b174-e82bc28f56d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a7fd086d-b4a5-407a-a9d2-c9d722d53d10\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4449b476-cbdd-4267-8a03-752113d958e0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"33986cb6-9bf1-40d6-8493-5c054ce20072\\\"\",\r\n + \ \"etag\": \"W/\\\"3c1f4539-c766-487d-b174-e82bc28f56d8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"aci-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aci-subnet\",\r\n - \ \"etag\": \"W/\\\"33986cb6-9bf1-40d6-8493-5c054ce20072\\\"\",\r\n + \ \"etag\": \"W/\\\"3c1f4539-c766-487d-b174-e82bc28f56d8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -483,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:13 GMT + - Tue, 10 May 2022 04:07:02 GMT etag: - - W/"33986cb6-9bf1-40d6-8493-5c054ce20072" + - W/"3c1f4539-c766-487d-b174-e82bc28f56d8" expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c72fa13-bb1d-41e7-90d2-f29d5e484d96 + - 6e6df876-873b-4fe5-948d-759f22ddb655 status: code: 200 message: OK @@ -521,12 +521,12 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T04:55:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:06:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -535,7 +535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:14 GMT + - Tue, 10 May 2022 04:07:02 GMT expires: - '-1' pragma: @@ -564,24 +564,26 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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":"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/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"}]}' + 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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","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/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"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":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","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/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","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/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/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-01-06T03:29:32.4509499Z","updatedOn":"2022-01-06T03:29:32.4509499Z","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/06fd7f48-77c8-4b54-2c2d-a189a451cd3b","type":"Microsoft.Authorization/roleAssignments","name":"06fd7f48-77c8-4b54-2c2d-a189a451cd3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:32.4716675Z","updatedOn":"2022-01-06T03:29:32.4716675Z","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/a59df7e5-6902-41fa-8799-ff2ada3a9f85","type":"Microsoft.Authorization/roleAssignments","name":"a59df7e5-6902-41fa-8799-ff2ada3a9f85"},{"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-01-06T03:29:32.5300425Z","updatedOn":"2022-01-06T03:29:32.5300425Z","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/33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c","type":"Microsoft.Authorization/roleAssignments","name":"33da4dd5-9a2c-4f4c-9828-a1762d6dbb5c"},{"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-01-06T03:29:33.2998690Z","updatedOn":"2022-01-06T03:29:33.2998690Z","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/3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5","type":"Microsoft.Authorization/roleAssignments","name":"3d191a7b-c8a1-40d1-dac3-7e55ef8aafa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T03:29:33.8972033Z","updatedOn":"2022-01-06T03:29:33.8972033Z","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/182dc532-f36f-428f-bf47-7ba4aa6bcc2a","type":"Microsoft.Authorization/roleAssignments","name":"182dc532-f36f-428f-bf47-7ba4aa6bcc2a"},{"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-01-06T03:29:32.5229897Z","updatedOn":"2022-01-06T03:29:32.5229897Z","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/38a4a092-07c8-40da-aa9f-0ea014e1461d","type":"Microsoft.Authorization/roleAssignments","name":"38a4a092-07c8-40da-aa9f-0ea014e1461d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-06T08:20:20.7740394Z","updatedOn":"2022-01-06T08:20:20.7740394Z","createdBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","updatedBy":"1cdf0687-cbc2-4a6d-a4ee-2734bcd9da65","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c8ba57c-6ec9-11ec-8f05-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"7c8ba57c-6ec9-11ec-8f05-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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.1519856Z","updatedOn":"2022-01-18T20:11:29.1519856Z","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/7f3ee78b-3fca-441d-a491-9e799c06a7a1","type":"Microsoft.Authorization/roleAssignments","name":"7f3ee78b-3fca-441d-a491-9e799c06a7a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-19T18:34:59.2886024Z","updatedOn":"2022-01-19T18:34:59.2886024Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5","type":"Microsoft.Authorization/roleAssignments","name":"6a3da5f0-2a21-4e92-8ed4-4fe03d9576a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.4635248Z","updatedOn":"2022-02-14T09:22:35.4635248Z","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/9b7726b0-a735-459e-e4a1-d420600dfa34","type":"Microsoft.Authorization/roleAssignments","name":"9b7726b0-a735-459e-e4a1-d420600dfa34"},{"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:35.8384928Z","updatedOn":"2022-02-14T09:22:35.8384928Z","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/b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e","type":"Microsoft.Authorization/roleAssignments","name":"b9cc76e1-c9fa-4fd8-693b-a92c2ed3bd1e"},{"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.1120736Z","updatedOn":"2022-02-14T09:22:36.1120736Z","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/bee36577-b5f1-4dae-685b-d187f8338018","type":"Microsoft.Authorization/roleAssignments","name":"bee36577-b5f1-4dae-685b-d187f8338018"},{"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:35.6666647Z","updatedOn":"2022-02-14T09:22:35.6666647Z","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/4b1bc36d-1722-4ea6-8d2e-754893881d8c","type":"Microsoft.Authorization/roleAssignments","name":"4b1bc36d-1722-4ea6-8d2e-754893881d8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:35.6980942Z","updatedOn":"2022-02-14T09:22:35.6980942Z","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/b2a0bd8e-510a-4757-5734-7ac723069e8a","type":"Microsoft.Authorization/roleAssignments","name":"b2a0bd8e-510a-4757-5734-7ac723069e8a"},{"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.4012592Z","updatedOn":"2022-02-14T09:22:36.4012592Z","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/9348b822-c4b8-4075-31d2-8f3cb209098b","type":"Microsoft.Authorization/roleAssignments","name":"9348b822-c4b8-4075-31d2-8f3cb209098b"},{"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/b24988ac-6180-42a0-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.6825082Z","updatedOn":"2022-02-14T09:22:36.6825082Z","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/cd91db1b-52d2-4b5e-ae83-e13231ac120d","type":"Microsoft.Authorization/roleAssignments","name":"cd91db1b-52d2-4b5e-ae83-e13231ac120d"},{"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:35.9705746Z","updatedOn":"2022-02-14T09:22:35.9705746Z","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/da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7","type":"Microsoft.Authorization/roleAssignments","name":"da4ede2e-d9bd-42e0-c99f-f899f8bf8ec7"},{"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:35.9861589Z","updatedOn":"2022-02-14T09:22:35.9861589Z","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/19e9db28-ce12-4eff-6909-c910d817f214","type":"Microsoft.Authorization/roleAssignments","name":"19e9db28-ce12-4eff-6909-c910d817f214"},{"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:37.4707539Z","updatedOn":"2022-02-14T09:22:37.4707539Z","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/4d8e2a4b-e23e-41ff-d785-53273b044ebf","type":"Microsoft.Authorization/roleAssignments","name":"4d8e2a4b-e23e-41ff-d785-53273b044ebf"},{"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/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:37.6748735Z","updatedOn":"2022-02-14T09:22:37.6748735Z","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/8834ad5b-7302-4b94-b81f-6a043048b507","type":"Microsoft.Authorization/roleAssignments","name":"8834ad5b-7302-4b94-b81f-6a043048b507"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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:37.4673958Z","updatedOn":"2022-02-14T09:22:37.4673958Z","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/00aea031-59c5-4a18-5bc4-a559965b89cb","type":"Microsoft.Authorization/roleAssignments","name":"00aea031-59c5-4a18-5bc4-a559965b89cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-15T09:28:32.1118469Z","updatedOn":"2022-02-15T09:28:32.1118469Z","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/a38793f3-8e41-11ec-9834-00224805079a","type":"Microsoft.Authorization/roleAssignments","name":"a38793f3-8e41-11ec-9834-00224805079a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-18T06:34:56.8590279Z","updatedOn":"2022-02-18T06:34:56.8590279Z","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/641717b0-835d-4fea-822d-9271b74f2a06","type":"Microsoft.Authorization/roleAssignments","name":"641717b0-835d-4fea-822d-9271b74f2a06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","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/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/8e3af657-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-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","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/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","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/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-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/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":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","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/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-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-09T03:36:21.3545206Z","updatedOn":"2021-12-09T03:36:21.3545206Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cc1520-9563-4cd9-9679-6fca0d736996","type":"Microsoft.Authorization/roleAssignments","name":"70cc1520-9563-4cd9-9679-6fca0d736996"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-17T03:48:01.6457261Z","updatedOn":"2022-03-17T03:48:01.6457261Z","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/0bf7d97b-a0d2-44cc-a9e4-213cf95a2469","type":"Microsoft.Authorization/roleAssignments","name":"0bf7d97b-a0d2-44cc-a9e4-213cf95a2469"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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-17T19:07:05.3238401Z","updatedOn":"2022-03-17T19:07:05.3238401Z","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/d1608e35-f4dd-466b-a74d-42d61ee71603","type":"Microsoft.Authorization/roleAssignments","name":"d1608e35-f4dd-466b-a74d-42d61ee71603"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-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-12T06:22:27.1281509Z","updatedOn":"2022-04-12T06:22:27.1281509Z","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/5fd47110-5a4d-4dec-9a4a-8c8aebc389c9","type":"Microsoft.Authorization/roleAssignments","name":"5fd47110-5a4d-4dec-9a4a-8c8aebc389c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T06:58:53.3812832Z","updatedOn":"2022-04-12T06:58:53.3812832Z","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/bbc0ce3e-0536-43ea-936c-c1675821a6a2","type":"Microsoft.Authorization/roleAssignments","name":"bbc0ce3e-0536-43ea-936c-c1675821a6a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T08:20:08.4977567Z","updatedOn":"2022-04-12T08:20:08.4977567Z","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/815f0586-5598-4482-9076-1205bfc6582f","type":"Microsoft.Authorization/roleAssignments","name":"815f0586-5598-4482-9076-1205bfc6582f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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-14T06:47:05.5411832Z","updatedOn":"2022-04-14T06:47:05.5411832Z","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/78e9b8d7-1b4b-4a28-8628-a010d123f198","type":"Microsoft.Authorization/roleAssignments","name":"78e9b8d7-1b4b-4a28-8628-a010d123f198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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:17.4269794Z","updatedOn":"2022-05-02T13:40:17.4269794Z","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/9eb0826f-d585-4b2c-297f-88912678969e","type":"Microsoft.Authorization/roleAssignments","name":"9eb0826f-d585-4b2c-297f-88912678969e"},{"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/b24988ac-6180-42a0-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:18.0736502Z","updatedOn":"2022-05-02T13:40:18.0736502Z","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/6791fc7d-4e72-449e-bbcd-1998969e613c","type":"Microsoft.Authorization/roleAssignments","name":"6791fc7d-4e72-449e-bbcd-1998969e613c"},{"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:17.9791750Z","updatedOn":"2022-05-02T13:40:17.9791750Z","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/1e3ee08d-0f20-4903-0e6c-ddb52a8c295f","type":"Microsoft.Authorization/roleAssignments","name":"1e3ee08d-0f20-4903-0e6c-ddb52a8c295f"},{"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":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.4609962Z","updatedOn":"2022-05-02T13:40:18.4609962Z","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/ed89ddaa-12a2-4a23-9534-e5ba50244d5e","type":"Microsoft.Authorization/roleAssignments","name":"ed89ddaa-12a2-4a23-9534-e5ba50244d5e"},{"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:19.0797113Z","updatedOn":"2022-05-02T13:40:19.0797113Z","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/c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6","type":"Microsoft.Authorization/roleAssignments","name":"c4a5f6f3-e5d5-4dc2-f2d5-3eed20b507c6"},{"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:19.1390601Z","updatedOn":"2022-05-02T13:40:19.1390601Z","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/1e9910d0-3818-45f1-56ba-fe51a728dc26","type":"Microsoft.Authorization/roleAssignments","name":"1e9910d0-3818-45f1-56ba-fe51a728dc26"},{"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.5129755Z","updatedOn":"2022-05-02T13:40:18.5129755Z","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/d3cf575a-3dc9-47b9-969d-99c43c846fdd","type":"Microsoft.Authorization/roleAssignments","name":"d3cf575a-3dc9-47b9-969d-99c43c846fdd"},{"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:19.0754481Z","updatedOn":"2022-05-02T13:40:19.0754481Z","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/a9284cbe-6d2e-47d0-a5a2-15771e2bcf16","type":"Microsoft.Authorization/roleAssignments","name":"a9284cbe-6d2e-47d0-a5a2-15771e2bcf16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-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/8e3af657-a8ff-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-05T19:30:29.6139441Z","updatedOn":"2022-05-05T19:30:29.6139441Z","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/d10052da-36e9-4745-8d05-0937faacd129","type":"Microsoft.Authorization/roleAssignments","name":"d10052da-36e9-4745-8d05-0937faacd129"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T05:45:49.3912934Z","updatedOn":"2022-05-09T05:45:49.3912934Z","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/d6925389-74b3-49b7-88ca-e90219deca8a","type":"Microsoft.Authorization/roleAssignments","name":"d6925389-74b3-49b7-88ca-e90219deca8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/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-09T10:44:26.6330451Z","updatedOn":"2022-05-09T10:44:26.6330451Z","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/478ea2e6-34ab-4b73-34fc-b0cf7aa617d1","type":"Microsoft.Authorization/roleAssignments","name":"478ea2e6-34ab-4b73-34fc-b0cf7aa617d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:27.4767981Z","updatedOn":"2022-05-09T10:44:27.4767981Z","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/a95b3e38-9128-457e-1313-6c0478cffb90","type":"Microsoft.Authorization/roleAssignments","name":"a95b3e38-9128-457e-1313-6c0478cffb90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T10:44:26.1076222Z","updatedOn":"2022-05-09T10:44:26.1076222Z","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/cc56c9de-5dfb-4c61-3f59-46a5175b28c5","type":"Microsoft.Authorization/roleAssignments","name":"cc56c9de-5dfb-4c61-3f59-46a5175b28c5"},{"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-09T10:44:26.6828254Z","updatedOn":"2022-05-09T10:44:26.6828254Z","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/b1f58e56-e37d-4a1c-5918-ebbe6806b915","type":"Microsoft.Authorization/roleAssignments","name":"b1f58e56-e37d-4a1c-5918-ebbe6806b915"},{"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-09T10:44:27.3117746Z","updatedOn":"2022-05-09T10:44:27.3117746Z","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/6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab","type":"Microsoft.Authorization/roleAssignments","name":"6c3b4bdf-2ce3-490c-4748-93a18a0fd0ab"},{"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-09T10:44:27.2809772Z","updatedOn":"2022-05-09T10:44:27.2809772Z","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/3ef6fc61-d442-4e52-e42d-567f83002f57","type":"Microsoft.Authorization/roleAssignments","name":"3ef6fc61-d442-4e52-e42d-567f83002f57"},{"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-09T10:44:28.1109276Z","updatedOn":"2022-05-09T10:44:28.1109276Z","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/d42b1164-a45c-4e98-65ea-5983642424a7","type":"Microsoft.Authorization/roleAssignments","name":"d42b1164-a45c-4e98-65ea-5983642424a7"},{"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-09T10:44:27.5269322Z","updatedOn":"2022-05-09T10:44:27.5269322Z","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/6a629e0b-2134-45c1-3800-d5fa7a5f9313","type":"Microsoft.Authorization/roleAssignments","name":"6a629e0b-2134-45c1-3800-d5fa7a5f9313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-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/b24988ac-6180-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/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"}]}' headers: cache-control: - no-cache content-length: - - '316403' + - '349963' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:15 GMT + - Tue, 10 May 2022 04:07:03 GMT expires: - '-1' pragma: @@ -601,7 +603,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestttnqwzhox-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6wlkpz5rm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -609,12 +611,13 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"aciConnectorLinux": {"enabled": true, "config": {"SubnetName": "aci-subnet"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -625,40 +628,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1551' + - '1684' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestttnqwzhox-8ecadf\",\n \"fqdn\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6wlkpz5rm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -672,22 +674,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3391' + - '3570' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:17 GMT + - Tue, 10 May 2022 04:07:07 GMT expires: - '-1' pragma: @@ -699,7 +703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 201 message: Created @@ -718,33 +722,32 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestttnqwzhox-8ecadf\",\n \"fqdn\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6wlkpz5rm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -758,20 +761,22 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3391' + - '3570' content-type: - application/json date: - - Thu, 14 Apr 2022 04:55:18 GMT + - Tue, 10 May 2022 04:07:08 GMT expires: - '-1' pragma: @@ -804,8 +809,8 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -822,7 +827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:18 GMT + - Tue, 10 May 2022 04:07:08 GMT expires: - '-1' pragma: @@ -862,25 +867,29 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/9f97563d-7b03-4273-aa51-d782b5f765cf?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/aaee6516-01dc-4c90-bd4a-6e886a2e3b8e?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f599d0e24bd24984a75a812b92265ea2 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal d32e3d22b9624c568d728df4eb6a2c5c + 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: - - '163' + - '489' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:19 GMT + - Tue, 10 May 2022 04:07:09 GMT expires: - '-1' pragma: @@ -892,7 +901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1191' status: code: 400 message: Bad Request @@ -911,8 +920,8 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -929,7 +938,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:22 GMT + - Tue, 10 May 2022 04:07:11 GMT expires: - '-1' pragma: @@ -969,492 +978,15 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/d0e287b8-33c8-4274-bffc-b6356d4a2b45?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/95a4f804-5708-4e75-bbfb-eaa586d0d360?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f599d0e24bd24984a75a812b92265ea2 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:55:22 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:55:26 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/d80b6150-99ff-4a54-9c7a-a2966003066e?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f599d0e24bd24984a75a812b92265ea2 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:55:26 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:55:33 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/166cc132-499c-49aa-b464-350a81421dfe?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f599d0e24bd24984a75a812b92265ea2 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:55:33 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:55:42 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/1baefe5f-c3f1-42f5-8cbe-1a66ee356f23?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f599d0e24bd24984a75a812b92265ea2 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 14 Apr 2022 04:55:42 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 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04:55: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 create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - 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, 14 Apr 2022 04:55:52 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: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/0c83d64e-f93a-4c3e-8b8c-c0a49839e641?api-version=2020-04-01-preview - 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:55:53.3917105Z","updatedOn":"2022-04-14T04:55:53.6885880Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/0c83d64e-f93a-4c3e-8b8c-c0a49839e641","type":"Microsoft.Authorization/roleAssignments","name":"0c83d64e-f93a-4c3e-8b8c-c0a49839e641"}' + 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/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:07:13.1243306Z","updatedOn":"2022-05-10T04:07:13.4679777Z","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/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/95a4f804-5708-4e75-bbfb-eaa586d0d360","type":"Microsoft.Authorization/roleAssignments","name":"95a4f804-5708-4e75-bbfb-eaa586d0d360"}' headers: cache-control: - no-cache @@ -1463,7 +995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:55:55 GMT + - Tue, 10 May 2022 04:07:14 GMT expires: - '-1' pragma: @@ -1475,7 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -1494,63 +1026,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 04: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 --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\"\n }" headers: cache-control: - no-cache @@ -1559,7 +1042,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:56:48 GMT + - Tue, 10 May 2022 04:07:37 GMT expires: - '-1' pragma: @@ -1592,14 +1075,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\"\n }" headers: cache-control: - no-cache @@ -1608,7 +1091,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:18 GMT + - Tue, 10 May 2022 04:08:07 GMT expires: - '-1' pragma: @@ -1641,14 +1124,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\"\n }" headers: cache-control: - no-cache @@ -1657,7 +1140,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:57:48 GMT + - Tue, 10 May 2022 04:08:38 GMT expires: - '-1' pragma: @@ -1690,14 +1173,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\"\n }" headers: cache-control: - no-cache @@ -1706,7 +1189,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:18 GMT + - Tue, 10 May 2022 04:09:08 GMT expires: - '-1' pragma: @@ -1739,14 +1222,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\"\n }" headers: cache-control: - no-cache @@ -1755,7 +1238,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:58:48 GMT + - Tue, 10 May 2022 04:09:38 GMT expires: - '-1' pragma: @@ -1788,24 +1271,24 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16413a2a-ade9-4f35-bcdd-ec1b4f2894bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/200caecc-310c-4fbf-8eb3-d91e8c306a19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a3a4116-e9ad-354f-bcdd-ec1b4f2894bb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:55:18.6533333Z\",\n \"endTime\": - \"2022-04-14T04:59:07.3810151Z\"\n }" + string: "{\n \"name\": \"ccae0c20-0c31-bf4f-8eb3-d91e8c306a19\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:07:08.3266666Z\",\n \"endTime\": + \"2022-05-10T04:09:51.618945Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:19 GMT + - Tue, 10 May 2022 04:10:08 GMT expires: - '-1' pragma: @@ -1838,33 +1321,32 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestttnqwzhox-8ecadf\",\n \"fqdn\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestttnqwzhox-8ecadf-7d4b1447.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest6wlkpz5rm-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6wlkpz5rm-8ecadf-6590c758.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1876,7 +1358,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2eeaf5cd-ffea-40ed-80e5-53fb943df1e4\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ff9d6e3b-85e8-4dbe-8462-4882ab656d1d\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1893,11 +1375,11 @@ interactions: cache-control: - no-cache content-length: - - '4410' + - '4403' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:19 GMT + - Tue, 10 May 2022 04:10:08 GMT expires: - '-1' pragma: @@ -1930,8 +1412,8 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -1949,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:59:19 GMT + - Tue, 10 May 2022 04:10:09 GMT expires: - '-1' pragma: @@ -1989,15 +1471,15 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/d14cb0d3-3daf-4f6a-8e48-013eb05951b7?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/9e44e6d5-8af0-4469-ad6c-3b085b1419de?api-version=2020-04-01-preview 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/cliakstest000003","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T04:59:20.3754183Z","updatedOn":"2022-04-14T04:59:20.9378703Z","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/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/d14cb0d3-3daf-4f6a-8e48-013eb05951b7","type":"Microsoft.Authorization/roleAssignments","name":"d14cb0d3-3daf-4f6a-8e48-013eb05951b7"}' + 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/cliakstest000003","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:10:10.3113631Z","updatedOn":"2022-05-10T04:10:10.6239720Z","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/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/9e44e6d5-8af0-4469-ad6c-3b085b1419de","type":"Microsoft.Authorization/roleAssignments","name":"9e44e6d5-8af0-4469-ad6c-3b085b1419de"}' headers: cache-control: - no-cache @@ -2006,7 +1488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 04:59:22 GMT + - Tue, 10 May 2022 04:10:11 GMT expires: - '-1' pragma: @@ -2018,7 +1500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -2038,26 +1520,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2042c35d-9cd8-4ed3-b6f0-07ae6875a82b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c6932b1-24e4-400f-8e53-f2e563b3148b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 04:59:23 GMT + - Tue, 10 May 2022 04:10:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2042c35d-9cd8-4ed3-b6f0-07ae6875a82b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1c6932b1-24e4-400f-8e53-f2e563b3148b?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml index 14102251c09..e1223d313bc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml @@ -8,12 +8,13 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -24,7 +25,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1367' + - '1500' Content-Type: - application/json ParameterSetName: @@ -32,32 +33,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0d949cf2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-0d949cf2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-62764182.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-62764182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -69,22 +70,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3010' + - '3189' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:11 GMT + - Tue, 10 May 2022 04:08:49 GMT expires: - '-1' pragma: @@ -96,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -116,23 +119,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:42 GMT + - Tue, 10 May 2022 04:09:19 GMT expires: - '-1' pragma: @@ -166,23 +169,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:11 GMT + - Tue, 10 May 2022 04:09:49 GMT expires: - '-1' pragma: @@ -216,23 +219,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:41 GMT + - Tue, 10 May 2022 04:10:18 GMT expires: - '-1' pragma: @@ -266,23 +269,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:11 GMT + - Tue, 10 May 2022 04:10:49 GMT expires: - '-1' pragma: @@ -316,23 +319,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:41 GMT + - Tue, 10 May 2022 04:11:18 GMT expires: - '-1' pragma: @@ -366,24 +369,124 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e89490ed-e782-4862-a524-3c009df6b8c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed9094e8-82e7-6248-a524-3c009df6b8c5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:03:11.74Z\",\n \"endTime\": - \"2022-04-14T05:06:06.2610679Z\"\n }" + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:11: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:12:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + 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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb418aec-2da6-4ede-8a72-d20e65ac0263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ec8a41cb-a62d-de4e-8a72-d20e65ac0263\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:08:49.1866666Z\",\n \"endTime\": + \"2022-05-10T04:12:24.5342244Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:12 GMT + - Tue, 10 May 2022 04:12:49 GMT expires: - '-1' pragma: @@ -417,32 +520,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0d949cf2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-0d949cf2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-62764182.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-62764182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -450,7 +553,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f36630b4-0356-40f0-97eb-ccca27b130df\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e4976c84-a745-4444-9269-cdedccaf8240\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -467,11 +570,11 @@ interactions: cache-control: - no-cache content-length: - - '3663' + - '3656' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:12 GMT + - Tue, 10 May 2022 04:12:50 GMT expires: - '-1' pragma: @@ -503,10 +606,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -516,20 +619,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:13 GMT + - Tue, 10 May 2022 04:12:51 GMT expires: - '-1' pragma: @@ -569,10 +672,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -582,21 +685,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:15 GMT + - Tue, 10 May 2022 04:12:54 GMT expires: - '-1' pragma: @@ -608,7 +711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 201 message: Created @@ -626,23 +729,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:45 GMT + - Tue, 10 May 2022 04:13:24 GMT expires: - '-1' pragma: @@ -674,23 +777,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:15 GMT + - Tue, 10 May 2022 04:13:53 GMT expires: - '-1' pragma: @@ -722,23 +825,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:46 GMT + - Tue, 10 May 2022 04:14:23 GMT expires: - '-1' pragma: @@ -770,23 +873,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:16 GMT + - Tue, 10 May 2022 04:14:53 GMT expires: - '-1' pragma: @@ -818,23 +921,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:46 GMT + - Tue, 10 May 2022 04:15:24 GMT expires: - '-1' pragma: @@ -866,23 +969,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:16 GMT + - Tue, 10 May 2022 04:15:54 GMT expires: - '-1' pragma: @@ -914,23 +1017,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:45 GMT + - Tue, 10 May 2022 04:16:24 GMT expires: - '-1' pragma: @@ -962,23 +1065,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:16 GMT + - Tue, 10 May 2022 04:16:54 GMT expires: - '-1' pragma: @@ -1010,23 +1113,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:46 GMT + - Tue, 10 May 2022 04:17:24 GMT expires: - '-1' pragma: @@ -1058,23 +1161,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:16 GMT + - Tue, 10 May 2022 04:17:53 GMT expires: - '-1' pragma: @@ -1106,23 +1209,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:46 GMT + - Tue, 10 May 2022 04:18:24 GMT expires: - '-1' pragma: @@ -1154,24 +1257,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4784f89-96ed-4e58-8b71-06de4f769d99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0dacdf65-7165-499e-b2d1-90ebf76cb016?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894f78d4-ed96-584e-8b71-06de4f769d99\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:06:16.2433333Z\",\n \"endTime\": - \"2022-04-14T05:12:10.4798359Z\"\n }" + string: "{\n \"name\": \"65dfac0d-6571-9e49-b2d1-90ebf76cb016\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:12:54.13Z\",\n \"endTime\": + \"2022-05-10T04:18:49.4061762Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:16 GMT + - Tue, 10 May 2022 04:18:54 GMT expires: - '-1' pragma: @@ -1203,10 +1306,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1216,19 +1319,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:16 GMT + - Tue, 10 May 2022 04:18:54 GMT expires: - '-1' pragma: @@ -1260,41 +1363,41 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0d949cf2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-0d949cf2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-62764182.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-62764182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1302,7 +1405,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f36630b4-0356-40f0-97eb-ccca27b130df\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e4976c84-a745-4444-9269-cdedccaf8240\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1319,11 +1422,11 @@ interactions: cache-control: - no-cache content-length: - - '4368' + - '4354' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:17 GMT + - Tue, 10 May 2022 04:18:55 GMT expires: - '-1' pragma: @@ -1343,20 +1446,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "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", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "currentOrchestratorVersion": "1.21.9", "upgradeSettings": {}, "powerState": + "User", "orchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", @@ -1364,11 +1467,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f36630b4-0356-40f0-97eb-ccca27b130df"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e4976c84-a745-4444-9269-cdedccaf8240"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1379,47 +1483,47 @@ interactions: Connection: - keep-alive Content-Length: - - '2970' + - '3044' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0d949cf2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-0d949cf2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-62764182.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-62764182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1427,7 +1531,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f36630b4-0356-40f0-97eb-ccca27b130df\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e4976c84-a745-4444-9269-cdedccaf8240\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1436,21 +1540,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4402' + - '4577' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:20 GMT + - Tue, 10 May 2022 04:18:58 GMT expires: - '-1' pragma: @@ -1466,103 +1573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-ahub - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:12: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 update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-ahub - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:13: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 + - '1193' status: code: 200 message: OK @@ -1580,23 +1591,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:50 GMT + - Tue, 10 May 2022 04:19:28 GMT expires: - '-1' pragma: @@ -1628,23 +1639,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:20 GMT + - Tue, 10 May 2022 04:19:58 GMT expires: - '-1' pragma: @@ -1676,23 +1687,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:50 GMT + - Tue, 10 May 2022 04:20:28 GMT expires: - '-1' pragma: @@ -1724,23 +1735,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:20 GMT + - Tue, 10 May 2022 04:20:58 GMT expires: - '-1' pragma: @@ -1772,23 +1783,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:51 GMT + - Tue, 10 May 2022 04:21:29 GMT expires: - '-1' pragma: @@ -1820,23 +1831,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:20 GMT + - Tue, 10 May 2022 04:21:59 GMT expires: - '-1' pragma: @@ -1868,23 +1879,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:50 GMT + - Tue, 10 May 2022 04:22:29 GMT expires: - '-1' pragma: @@ -1916,23 +1927,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:21 GMT + - Tue, 10 May 2022 04:22:59 GMT expires: - '-1' pragma: @@ -1964,23 +1975,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:50 GMT + - Tue, 10 May 2022 04:23:29 GMT expires: - '-1' pragma: @@ -2012,23 +2023,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:21 GMT + - Tue, 10 May 2022 04:23:59 GMT expires: - '-1' pragma: @@ -2060,23 +2071,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:51 GMT + - Tue, 10 May 2022 04:24:29 GMT expires: - '-1' pragma: @@ -2108,23 +2119,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:20 GMT + - Tue, 10 May 2022 04:25:00 GMT expires: - '-1' pragma: @@ -2156,23 +2167,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:51 GMT + - Tue, 10 May 2022 04:25:30 GMT expires: - '-1' pragma: @@ -2204,23 +2215,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:21 GMT + - Tue, 10 May 2022 04:26:00 GMT expires: - '-1' pragma: @@ -2252,23 +2263,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:51 GMT + - Tue, 10 May 2022 04:26:30 GMT expires: - '-1' pragma: @@ -2300,23 +2311,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:21 GMT + - Tue, 10 May 2022 04:27:00 GMT expires: - '-1' pragma: @@ -2348,23 +2359,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:51 GMT + - Tue, 10 May 2022 04:27:29 GMT expires: - '-1' pragma: @@ -2396,23 +2407,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:21 GMT + - Tue, 10 May 2022 04:27:59 GMT expires: - '-1' pragma: @@ -2444,23 +2455,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:52 GMT + - Tue, 10 May 2022 04:28:29 GMT expires: - '-1' pragma: @@ -2492,23 +2503,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:21 GMT + - Tue, 10 May 2022 04:29:00 GMT expires: - '-1' pragma: @@ -2540,23 +2551,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:52 GMT + - Tue, 10 May 2022 04:29:30 GMT expires: - '-1' pragma: @@ -2588,23 +2599,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:22 GMT + - Tue, 10 May 2022 04:30:00 GMT expires: - '-1' pragma: @@ -2636,23 +2647,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:52 GMT + - Tue, 10 May 2022 04:30:30 GMT expires: - '-1' pragma: @@ -2684,23 +2695,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:22 GMT + - Tue, 10 May 2022 04:31:00 GMT expires: - '-1' pragma: @@ -2732,23 +2743,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:51 GMT + - Tue, 10 May 2022 04:31:30 GMT expires: - '-1' pragma: @@ -2780,24 +2791,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/255fc44e-855b-44de-9d62-011df05071ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a41632a9-09a8-44b6-a0fb-d844ac32e137?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ec45f25-5b85-de44-9d62-011df05071ee\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:12:20.56Z\",\n \"endTime\": - \"2022-04-14T05:26:05.3833648Z\"\n }" + string: "{\n \"name\": \"a93216a4-a809-b644-a0fb-d844ac32e137\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:18:59.1533333Z\",\n \"endTime\": + \"2022-05-10T04:31:42.6309028Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:32:00 GMT expires: - '-1' pragma: @@ -2829,41 +2840,41 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0d949cf2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-0d949cf2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-62764182.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-62764182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2871,7 +2882,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f36630b4-0356-40f0-97eb-ccca27b130df\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e4976c84-a745-4444-9269-cdedccaf8240\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2888,11 +2899,11 @@ interactions: cache-control: - no-cache content-length: - - '4405' + - '4391' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:32:01 GMT expires: - '-1' pragma: @@ -2924,10 +2935,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -2937,10 +2948,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -2948,20 +2959,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2686.220322\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1987' + - '1973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:23 GMT + - Tue, 10 May 2022 04:32:01 GMT expires: - '-1' pragma: @@ -2995,26 +3006,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5017d886-0b8c-4c40-b672-9d641fefcbfa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215b0d2c-675b-4b3e-8a94-25b8d4dbbf37?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:26:24 GMT + - Tue, 10 May 2022 04:32:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5017d886-0b8c-4c40-b672-9d641fefcbfa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/215b0d2c-675b-4b3e-8a94-25b8d4dbbf37?api-version=2016-03-30 pragma: - no-cache server: @@ -3024,7 +3035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14995' status: code: 202 message: Accepted @@ -3044,26 +3055,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/436bfcc8-6b01-421a-8063-e137cd596038?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e759c7dc-8dc5-471e-a4a2-87918fe19e4a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:26:24 GMT + - Tue, 10 May 2022 04:32:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/436bfcc8-6b01-421a-8063-e137cd596038?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e759c7dc-8dc5-471e-a4a2-87918fe19e4a?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml index f5e991b8bac..fa5cacdab9e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml @@ -8,12 +8,14 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$", "gmsaProfile": {"enabled": true}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKSWindowsGmsaPreview @@ -26,7 +28,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1401' + - '1534' Content-Type: - application/json ParameterSetName: @@ -34,32 +36,32 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-da55c4d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-da55c4d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-92d6bc17.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-92d6bc17.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -73,21 +75,23 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3108' + - '3287' content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:27 GMT + - Tue, 10 May 2022 04:15:07 GMT expires: - '-1' pragma: @@ -99,7 +103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -121,14 +125,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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:15: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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + 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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" headers: cache-control: - no-cache @@ -137,7 +193,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 04:59:58 GMT + - Tue, 10 May 2022 04:16:07 GMT expires: - '-1' pragma: @@ -173,14 +229,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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" headers: cache-control: - no-cache @@ -189,7 +245,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:28 GMT + - Tue, 10 May 2022 04:16:37 GMT expires: - '-1' pragma: @@ -225,14 +281,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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" headers: cache-control: - no-cache @@ -241,7 +297,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:00:58 GMT + - Tue, 10 May 2022 04:17:07 GMT expires: - '-1' pragma: @@ -277,14 +333,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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" headers: cache-control: - no-cache @@ -293,7 +349,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:27 GMT + - Tue, 10 May 2022 04:17:37 GMT expires: - '-1' pragma: @@ -329,14 +385,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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\"\n }" headers: cache-control: - no-cache @@ -345,7 +401,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:01:58 GMT + - Tue, 10 May 2022 04:18:08 GMT expires: - '-1' pragma: @@ -381,15 +437,15 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0cc4ea8-97a8-47cd-9aa2-b9bf2259c60b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d5e2403-8633-4398-a047-8b91b8b31b0a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a84eccc0-a897-cd47-9aa2-b9bf2259c60b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T04:59:28.3633333Z\",\n \"endTime\": - \"2022-04-14T05:02:28.1451111Z\"\n }" + string: "{\n \"name\": \"03245e0d-3386-9843-a047-8b91b8b31b0a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:15:07.7866666Z\",\n \"endTime\": + \"2022-05-10T04:18:31.6665351Z\"\n }" headers: cache-control: - no-cache @@ -398,7 +454,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:28 GMT + - Tue, 10 May 2022 04:18:38 GMT expires: - '-1' pragma: @@ -434,32 +490,32 @@ 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-da55c4d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-da55c4d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-92d6bc17.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-92d6bc17.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -469,7 +525,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/d592d3f7-c9fe-4fc8-96df-ebb500d848fa\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/218fb930-7997-499d-93a9-b2f86f404c34\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -486,11 +542,11 @@ interactions: cache-control: - no-cache content-length: - - '3761' + - '3754' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:28 GMT + - Tue, 10 May 2022 04:18:38 GMT expires: - '-1' pragma: @@ -522,10 +578,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -535,20 +591,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:29 GMT + - Tue, 10 May 2022 04:18:38 GMT expires: - '-1' pragma: @@ -588,10 +644,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -601,21 +657,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 05:02:32 GMT + - Tue, 10 May 2022 04:18:41 GMT expires: - '-1' pragma: @@ -645,23 +701,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:02 GMT + - Tue, 10 May 2022 04:19:12 GMT expires: - '-1' pragma: @@ -693,23 +749,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:31 GMT + - Tue, 10 May 2022 04:19:42 GMT expires: - '-1' pragma: @@ -741,23 +797,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:02 GMT + - Tue, 10 May 2022 04:20:12 GMT expires: - '-1' pragma: @@ -789,23 +845,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:32 GMT + - Tue, 10 May 2022 04:20:42 GMT expires: - '-1' pragma: @@ -837,23 +893,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:02 GMT + - Tue, 10 May 2022 04:21:12 GMT expires: - '-1' pragma: @@ -885,23 +941,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:32 GMT + - Tue, 10 May 2022 04:21:42 GMT expires: - '-1' pragma: @@ -933,23 +989,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:02 GMT + - Tue, 10 May 2022 04:22:12 GMT expires: - '-1' pragma: @@ -981,23 +1037,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:32 GMT + - Tue, 10 May 2022 04:22:42 GMT expires: - '-1' pragma: @@ -1029,23 +1085,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:03 GMT + - Tue, 10 May 2022 04:23:13 GMT expires: - '-1' pragma: @@ -1077,23 +1133,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:32 GMT + - Tue, 10 May 2022 04:23:42 GMT expires: - '-1' pragma: @@ -1125,23 +1181,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:02 GMT + - Tue, 10 May 2022 04:24:12 GMT expires: - '-1' pragma: @@ -1173,23 +1229,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:33 GMT + - Tue, 10 May 2022 04:24:43 GMT expires: - '-1' pragma: @@ -1221,24 +1277,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7949f522-7df6-48cb-a873-09e84b51fb74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa03132a-f8d7-4bb7-b10c-e052eba1fd1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22f54979-f67d-cb48-a873-09e84b51fb74\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:02:32.47Z\",\n \"endTime\": - \"2022-04-14T05:08:59.3158169Z\"\n }" + string: "{\n \"name\": \"2a1303fa-d7f8-b74b-b10c-e052eba1fd1e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:18:42.5133333Z\",\n \"endTime\": + \"2022-05-10T04:25:06.5272028Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:03 GMT + - Tue, 10 May 2022 04:25:12 GMT expires: - '-1' pragma: @@ -1270,10 +1326,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1283,19 +1339,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:03 GMT + - Tue, 10 May 2022 04:25:14 GMT expires: - '-1' pragma: @@ -1327,10 +1383,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1340,10 +1396,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -1351,20 +1407,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2686.220322\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1987' + - '1973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:04 GMT + - Tue, 10 May 2022 04:25:14 GMT expires: - '-1' pragma: @@ -1398,26 +1454,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75257d1f-d6ae-404d-9950-7a5150633a83?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3c7553f-6dd1-4398-88d7-fdf4fa529a9e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:09:04 GMT + - Tue, 10 May 2022 04:25:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/75257d1f-d6ae-404d-9950-7a5150633a83?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b3c7553f-6dd1-4398-88d7-fdf4fa529a9e?api-version=2016-03-30 pragma: - no-cache server: @@ -1427,7 +1483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' status: code: 202 message: Accepted @@ -1447,26 +1503,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5643c766-2628-4dfa-9924-cb0aede51b41?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b2d901e-4842-4328-ba2e-7fbd2ced919e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:09:05 GMT + - Tue, 10 May 2022 04:25:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5643c766-2628-4dfa-9924-cb0aede51b41?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7b2d901e-4842-4328-ba2e-7fbd2ced919e?api-version=2016-03-30 pragma: - no-cache server: @@ -1476,7 +1532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml index ff7bd480e04..444d652db0a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml @@ -1,23 +1,25 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxa5hqlks3-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestogqwqntap-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "securityProfile": {"workloadIdentity": {"enabled": true}}}}' + "securityProfile": {"workloadIdentity": {"enabled": true}}, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -27,39 +29,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1519' + - '1652' 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxa5hqlks3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxa5hqlks3-8ecadf-45d9402a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxa5hqlks3-8ecadf-45d9402a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestogqwqntap-8ecadf\",\n \"fqdn\": \"cliakstest-clitestogqwqntap-8ecadf-24f74705.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestogqwqntap-8ecadf-24f74705.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -71,22 +73,25 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/0ab20aca-0f31-4807-827e-ce15da97a0b3/\"\n + {\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://oidc.prod-aks.azure.com/ff2c3732-31aa-44f7-9d47-4f5d1f2737dd/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3203' + - '3382' content-type: - application/json date: - - Mon, 18 Apr 2022 07:41:03 GMT + - Tue, 10 May 2022 04:10:54 GMT expires: - '-1' pragma: @@ -98,7 +103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -106,7 +111,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -119,23 +124,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:41:33 GMT + - Tue, 10 May 2022 04:11:24 GMT expires: - '-1' pragma: @@ -157,7 +162,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -170,23 +175,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:42:03 GMT + - Tue, 10 May 2022 04:11:54 GMT expires: - '-1' pragma: @@ -208,7 +213,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -221,23 +226,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:42:34 GMT + - Tue, 10 May 2022 04:12:24 GMT expires: - '-1' pragma: @@ -259,7 +264,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -272,23 +277,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:43:04 GMT + - Tue, 10 May 2022 04:12:55 GMT expires: - '-1' pragma: @@ -310,7 +315,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -323,23 +328,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:43:34 GMT + - Tue, 10 May 2022 04:13:25 GMT expires: - '-1' pragma: @@ -361,7 +366,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -374,23 +379,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:44:04 GMT + - Tue, 10 May 2022 04:13:55 GMT expires: - '-1' pragma: @@ -412,7 +417,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -425,23 +430,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Mon, 18 Apr 2022 07:44:34 GMT + - Tue, 10 May 2022 04:14:25 GMT expires: - '-1' pragma: @@ -463,7 +468,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -476,24 +481,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b59123f-4349-4c3a-8a14-a409ee9cb6b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2c3e5f0-ebc6-4939-8c42-49613d0bd751?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f12593b-4943-3a4c-8a14-a409ee9cb6b8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-18T07:41:04.2566666Z\",\n \"endTime\": - \"2022-04-18T07:44:46.0468336Z\"\n }" + string: "{\n \"name\": \"f0e5c3b2-c6eb-3949-8c42-49613d0bd751\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:10:54.94Z\",\n \"endTime\": + \"2022-05-10T04:14:54.5006382Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:04 GMT + - Tue, 10 May 2022 04:14:54 GMT expires: - '-1' pragma: @@ -515,7 +520,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -528,39 +533,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxa5hqlks3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxa5hqlks3-8ecadf-45d9402a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxa5hqlks3-8ecadf-45d9402a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestogqwqntap-8ecadf\",\n \"fqdn\": \"cliakstest-clitestogqwqntap-8ecadf-24f74705.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestogqwqntap-8ecadf-24f74705.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fbf58988-36de-4306-be8d-841a64aba381\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/c3f2788c-ff7e-4471-b77b-539f28c3ce1c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -571,7 +576,7 @@ interactions: \ \"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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/0ab20aca-0f31-4807-827e-ce15da97a0b3/\"\n + {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/ff2c3732-31aa-44f7-9d47-4f5d1f2737dd/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -579,11 +584,11 @@ interactions: cache-control: - no-cache content-length: - - '3856' + - '3849' content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:04 GMT + - Tue, 10 May 2022 04:14:55 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml index 0f8f6d52643..253c19c096b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml @@ -730,7 +730,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1409,7 +1409,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1590,7 +1590,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1904,7 +1904,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -3011,7 +3011,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -3104,7 +3104,7 @@ interactions: - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.6.9 (Linux-5.4.0-1069-azure-x86_64-with-Ubuntu-18.04-bionic) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml index f964b717321..70644e80f11 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:03:24Z"},"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","date":"2022-05-10T04:17:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:03:25 GMT + - Tue, 10 May 2022 04:17:13 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzw7ayrwlp-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg2lvyvlg7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1445' + - '1578' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzw7ayrwlp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg2lvyvlg7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n @@ -110,22 +112,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3145' + - '3324' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:33 GMT + - Tue, 10 May 2022 04:17:19 GMT expires: - '-1' pragma: @@ -137,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -155,71 +159,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:04: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 -a --ssh-key-value -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:33 GMT + - Tue, 10 May 2022 04:17:49 GMT expires: - '-1' pragma: @@ -251,23 +207,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:04 GMT + - Tue, 10 May 2022 04:18:19 GMT expires: - '-1' pragma: @@ -299,23 +255,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:35 GMT + - Tue, 10 May 2022 04:18:49 GMT expires: - '-1' pragma: @@ -347,23 +303,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:05 GMT + - Tue, 10 May 2022 04:19:18 GMT expires: - '-1' pragma: @@ -395,23 +351,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:35 GMT + - Tue, 10 May 2022 04:19:49 GMT expires: - '-1' pragma: @@ -443,23 +399,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:05 GMT + - Tue, 10 May 2022 04:20:19 GMT expires: - '-1' pragma: @@ -491,23 +447,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:36 GMT + - Tue, 10 May 2022 04:20:49 GMT expires: - '-1' pragma: @@ -539,24 +495,24 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/3f56b064-2874-4826-a429-681c86dcd533?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb368183-b503-47c9-bf12-b58c6c64f9ca?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"64b0563f-7428-2648-a429-681c86dcd533\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:03:32.5966666Z\",\n \"endTime\": - \"2022-04-14T05:07:38.1881074Z\"\n }" + string: "{\n \"name\": \"838136bb-03b5-c947-bf12-b58c6c64f9ca\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:17:18.73Z\",\n \"endTime\": + \"2022-05-10T04:21:15.7202118Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:06 GMT + - Tue, 10 May 2022 04:21:19 GMT expires: - '-1' pragma: @@ -588,32 +544,32 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzw7ayrwlp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg2lvyvlg7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": @@ -623,7 +579,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/c0cde42a-8e84-4eea-849c-2c4894b745fd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/691137c5-5392-4b2c-b284-8bcb7364b873\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -633,19 +589,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4150' + - '4329' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:07 GMT + - Tue, 10 May 2022 04:21:20 GMT expires: - '-1' pragma: @@ -677,32 +635,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzw7ayrwlp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg2lvyvlg7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": @@ -712,7 +670,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/c0cde42a-8e84-4eea-849c-2c4894b745fd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/691137c5-5392-4b2c-b284-8bcb7364b873\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -722,19 +680,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4150' + - '4329' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:07 GMT + - Tue, 10 May 2022 04:21:21 GMT expires: - '-1' pragma: @@ -754,26 +714,28 @@ interactions: message: OK - request: body: '{"location": "eastus", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestzw7ayrwlp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestg2lvyvlg7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_eastus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/c0cde42a-8e84-4eea-849c-2c4894b745fd"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/691137c5-5392-4b2c-b284-8bcb7364b873"}]}, "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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -784,38 +746,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2447' + - '2573' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzw7ayrwlp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg2lvyvlg7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": false,\n \"config\": null\n }\n @@ -823,7 +785,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/c0cde42a-8e84-4eea-849c-2c4894b745fd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/691137c5-5392-4b2c-b284-8bcb7364b873\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -833,21 +795,23 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ac5cbad4-99f4-49b3-99b7-2b49e73f3bf1?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/396ac45c-f5e7-47d5-9099-d6bd8e2f4106?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3795' + - '3974' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:12 GMT + - Tue, 10 May 2022 04:21:25 GMT expires: - '-1' pragma: @@ -881,71 +845,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-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/ac5cbad4-99f4-49b3-99b7-2b49e73f3bf1?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"d4ba5cac-f499-b349-99b7-2b49e73f3bf1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:10.48Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 disable-addons - Connection: - - keep-alive - ParameterSetName: - - --addons --resource-group --name -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/ac5cbad4-99f4-49b3-99b7-2b49e73f3bf1?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/396ac45c-f5e7-47d5-9099-d6bd8e2f4106?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"d4ba5cac-f499-b349-99b7-2b49e73f3bf1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:10.48Z\"\n }" + string: "{\n \"name\": \"5cc46a39-e7f5-d547-9099-d6bd8e2f4106\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:25.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:12 GMT + - Tue, 10 May 2022 04:21:55 GMT expires: - '-1' pragma: @@ -977,23 +893,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/ac5cbad4-99f4-49b3-99b7-2b49e73f3bf1?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/396ac45c-f5e7-47d5-9099-d6bd8e2f4106?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"d4ba5cac-f499-b349-99b7-2b49e73f3bf1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:10.48Z\"\n }" + string: "{\n \"name\": \"5cc46a39-e7f5-d547-9099-d6bd8e2f4106\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:25.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:45 GMT + - Tue, 10 May 2022 04:22:25 GMT expires: - '-1' pragma: @@ -1025,24 +941,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/ac5cbad4-99f4-49b3-99b7-2b49e73f3bf1?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/396ac45c-f5e7-47d5-9099-d6bd8e2f4106?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"d4ba5cac-f499-b349-99b7-2b49e73f3bf1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:08:10.48Z\",\n \"endTime\": - \"2022-04-14T05:10:02.1256368Z\"\n }" + string: "{\n \"name\": \"5cc46a39-e7f5-d547-9099-d6bd8e2f4106\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:21:25.0833333Z\",\n \"endTime\": + \"2022-05-10T04:22:50.5745499Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:15 GMT + - Tue, 10 May 2022 04:22:56 GMT expires: - '-1' pragma: @@ -1074,32 +990,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzw7ayrwlp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzw7ayrwlp-8ecadf-2f37b3a2.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg2lvyvlg7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg2lvyvlg7-8ecadf-d70ec9b8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": false,\n \"config\": null\n }\n @@ -1107,7 +1023,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/c0cde42a-8e84-4eea-849c-2c4894b745fd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/691137c5-5392-4b2c-b284-8bcb7364b873\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1117,19 +1033,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3797' + - '3976' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:18 GMT + - Tue, 10 May 2022 04:22:57 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml index 53f61e0ad06..738a293e670 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:03:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:10:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:03:03 GMT + - Tue, 10 May 2022 04:10:14 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestonn7nontf-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqv5knrk27-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1469' + - '1602' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestonn7nontf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqv5knrk27-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -111,22 +113,24 @@ interactions: \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3158' + - '3337' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:06 GMT + - Tue, 10 May 2022 04:10:17 GMT expires: - '-1' pragma: @@ -138,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -156,23 +160,119 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:10: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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:11:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:03:37 GMT + - Tue, 10 May 2022 04:11:48 GMT expires: - '-1' pragma: @@ -204,23 +304,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:07 GMT + - Tue, 10 May 2022 04:12:17 GMT expires: - '-1' pragma: @@ -252,23 +352,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:04:36 GMT + - Tue, 10 May 2022 04:12:47 GMT expires: - '-1' pragma: @@ -300,23 +400,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:07 GMT + - Tue, 10 May 2022 04:13:17 GMT expires: - '-1' pragma: @@ -348,23 +448,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:37 GMT + - Tue, 10 May 2022 04:13:47 GMT expires: - '-1' pragma: @@ -396,23 +496,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:07 GMT + - Tue, 10 May 2022 04:14:17 GMT expires: - '-1' pragma: @@ -444,24 +544,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c2dd561-f63a-470b-9ab3-a8ff1bb63acc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12068d57-dbbc-4641-a801-ac984000157c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"61d52d2c-3af6-0b47-9ab3-a8ff1bb63acc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:03:07.38Z\",\n \"endTime\": - \"2022-04-14T05:06:11.9117416Z\"\n }" + string: "{\n \"name\": \"578d0612-bcdb-4146-a801-ac984000157c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:10:17.5633333Z\",\n \"endTime\": + \"2022-05-10T04:14:21.119558Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:37 GMT + - Tue, 10 May 2022 04:14:47 GMT expires: - '-1' pragma: @@ -493,32 +593,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestonn7nontf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqv5knrk27-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -528,7 +628,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e95b80e8-e347-4d2f-8a7e-fec096284113\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7dfbb26c-0765-45d6-af8a-d1844805fcb1\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -546,11 +646,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:38 GMT + - Tue, 10 May 2022 04:14:47 GMT expires: - '-1' pragma: @@ -582,32 +682,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestonn7nontf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqv5knrk27-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -617,7 +717,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e95b80e8-e347-4d2f-8a7e-fec096284113\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7dfbb26c-0765-45d6-af8a-d1844805fcb1\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -635,11 +735,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:39 GMT + - Tue, 10 May 2022 04:14:48 GMT expires: - '-1' pragma: @@ -659,15 +759,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestonn7nontf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestqv5knrk27-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -675,7 +775,7 @@ interactions: "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/e95b80e8-e347-4d2f-8a7e-fec096284113"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7dfbb26c-0765-45d6-af8a-d1844805fcb1"}]}, "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"}}, @@ -690,38 +790,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2460' + - '2453' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestonn7nontf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqv5knrk27-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -729,7 +829,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e95b80e8-e347-4d2f-8a7e-fec096284113\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7dfbb26c-0765-45d6-af8a-d1844805fcb1\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -739,21 +839,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b611a50e-91be-483f-849c-d191b5c89379?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b51f820-58a0-4c85-a9dc-f01c05689d18?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3810' + - '3989' content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:41 GMT + - Tue, 10 May 2022 04:14:50 GMT expires: - '-1' pragma: @@ -769,7 +871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' status: code: 200 message: OK @@ -787,14 +889,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b611a50e-91be-483f-849c-d191b5c89379?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b51f820-58a0-4c85-a9dc-f01c05689d18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ea511b6-be91-3f48-849c-d191b5c89379\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:41.4233333Z\"\n }" + string: "{\n \"name\": \"20f8511b-a058-854c-a9dc-f01c05689d18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:51.5833333Z\"\n }" headers: cache-control: - no-cache @@ -803,7 +905,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:11 GMT + - Tue, 10 May 2022 04:15:21 GMT expires: - '-1' pragma: @@ -835,14 +937,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b611a50e-91be-483f-849c-d191b5c89379?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b51f820-58a0-4c85-a9dc-f01c05689d18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ea511b6-be91-3f48-849c-d191b5c89379\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:06:41.4233333Z\"\n }" + string: "{\n \"name\": \"20f8511b-a058-854c-a9dc-f01c05689d18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:14:51.5833333Z\"\n }" headers: cache-control: - no-cache @@ -851,7 +953,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:40 GMT + - Tue, 10 May 2022 04:15:51 GMT expires: - '-1' pragma: @@ -883,15 +985,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b611a50e-91be-483f-849c-d191b5c89379?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b51f820-58a0-4c85-a9dc-f01c05689d18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ea511b6-be91-3f48-849c-d191b5c89379\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:06:41.4233333Z\",\n \"endTime\": - \"2022-04-14T05:07:54.4338898Z\"\n }" + string: "{\n \"name\": \"20f8511b-a058-854c-a9dc-f01c05689d18\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:14:51.5833333Z\",\n \"endTime\": + \"2022-05-10T04:16:11.3942111Z\"\n }" headers: cache-control: - no-cache @@ -900,7 +1002,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:11 GMT + - Tue, 10 May 2022 04:16:21 GMT expires: - '-1' pragma: @@ -932,32 +1034,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestonn7nontf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestonn7nontf-8ecadf-fbc63489.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqv5knrk27-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqv5knrk27-8ecadf-7856cf08.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -965,7 +1067,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e95b80e8-e347-4d2f-8a7e-fec096284113\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7dfbb26c-0765-45d6-af8a-d1844805fcb1\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -983,11 +1085,11 @@ interactions: cache-control: - no-cache content-length: - - '3812' + - '3805' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:11 GMT + - Tue, 10 May 2022 04:16:22 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml index c34d4a9d4cb..e163e2f9554 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:09:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:32:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:09:06 GMT + - Tue, 10 May 2022 04:32:04 GMT expires: - '-1' pragma: @@ -43,20 +43,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdtrjywagf-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestoieiolc4i-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,38 +69,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1507' + - '1640' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdtrjywagf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestoieiolc4i-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -112,21 +114,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3207' + - '3386' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:09 GMT + - Tue, 10 May 2022 04:32:11 GMT expires: - '-1' pragma: @@ -138,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' status: code: 201 message: Created @@ -156,14 +160,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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: + - '*/*' + 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.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" headers: cache-control: - no-cache @@ -172,7 +224,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:39 GMT + - Tue, 10 May 2022 04:33:10 GMT expires: - '-1' pragma: @@ -204,14 +256,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +272,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:09 GMT + - Tue, 10 May 2022 04:33:40 GMT expires: - '-1' pragma: @@ -252,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +320,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:39 GMT + - Tue, 10 May 2022 04:34:10 GMT expires: - '-1' pragma: @@ -300,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +368,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:08 GMT + - Tue, 10 May 2022 04:34:41 GMT expires: - '-1' pragma: @@ -348,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +416,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:39 GMT + - Tue, 10 May 2022 04:35:11 GMT expires: - '-1' pragma: @@ -396,15 +448,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2d68c47-5afd-4789-8b29-0f6b474f4765?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833f18b6-8710-4631-8af3-340c5b510658?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"478cd6d2-fd5a-8947-8b29-0f6b474f4765\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:09:09.34Z\",\n \"endTime\": - \"2022-04-14T05:12:00.0977375Z\"\n }" + string: "{\n \"name\": \"b6183f83-1087-3146-8af3-340c5b510658\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:32:11.29Z\",\n \"endTime\": + \"2022-05-10T04:35:41.7127883Z\"\n }" headers: cache-control: - no-cache @@ -413,7 +465,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:09 GMT + - Tue, 10 May 2022 04:35:41 GMT expires: - '-1' pragma: @@ -445,32 +497,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdtrjywagf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestoieiolc4i-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -481,7 +533,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/81305013-ce52-4063-a41e-cf235810062c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0908e3b6-2dba-4633-9a40-561f336f99a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -499,11 +551,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:09 GMT + - Tue, 10 May 2022 04:35:42 GMT expires: - '-1' pragma: @@ -535,32 +587,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdtrjywagf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestoieiolc4i-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -571,7 +623,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/81305013-ce52-4063-a41e-cf235810062c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0908e3b6-2dba-4633-9a40-561f336f99a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -589,11 +641,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:10 GMT + - Tue, 10 May 2022 04:35:42 GMT expires: - '-1' pragma: @@ -613,15 +665,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestdtrjywagf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestoieiolc4i-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -629,7 +681,7 @@ interactions: "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/81305013-ce52-4063-a41e-cf235810062c"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0908e3b6-2dba-4633-9a40-561f336f99a6"}]}, "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"}}, @@ -644,38 +696,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2463' + - '2456' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdtrjywagf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestoieiolc4i-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -683,7 +735,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/81305013-ce52-4063-a41e-cf235810062c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0908e3b6-2dba-4633-9a40-561f336f99a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -693,21 +745,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b75499e-eb31-4704-91c3-dec41a79408b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3703f625-f049-4498-a942-d2825c17b5fa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3813' + - '3992' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:12 GMT + - Tue, 10 May 2022 04:35:44 GMT expires: - '-1' pragma: @@ -723,55 +777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks disable-addons - Connection: - - keep-alive - ParameterSetName: - - --addons --resource-group --name -o - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b75499e-eb31-4704-91c3-dec41a79408b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"9e49754b-31eb-0447-91c3-dec41a79408b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:13.3833333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:12: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 + - '1194' status: code: 200 message: OK @@ -789,23 +795,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b75499e-eb31-4704-91c3-dec41a79408b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3703f625-f049-4498-a942-d2825c17b5fa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e49754b-31eb-0447-91c3-dec41a79408b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:13.3833333Z\"\n }" + string: "{\n \"name\": \"25f60337-49f0-9844-a942-d2825c17b5fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:35:45.23Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:13 GMT + - Tue, 10 May 2022 04:36:14 GMT expires: - '-1' pragma: @@ -837,23 +843,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b75499e-eb31-4704-91c3-dec41a79408b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3703f625-f049-4498-a942-d2825c17b5fa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e49754b-31eb-0447-91c3-dec41a79408b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:13.3833333Z\"\n }" + string: "{\n \"name\": \"25f60337-49f0-9844-a942-d2825c17b5fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:35:45.23Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:43 GMT + - Tue, 10 May 2022 04:36:45 GMT expires: - '-1' pragma: @@ -885,24 +891,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b75499e-eb31-4704-91c3-dec41a79408b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3703f625-f049-4498-a942-d2825c17b5fa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e49754b-31eb-0447-91c3-dec41a79408b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:12:13.3833333Z\",\n \"endTime\": - \"2022-04-14T05:13:54.1165511Z\"\n }" + string: "{\n \"name\": \"25f60337-49f0-9844-a942-d2825c17b5fa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:35:45.23Z\",\n \"endTime\": + \"2022-05-10T04:37:08.7678505Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:13 GMT + - Tue, 10 May 2022 04:37:15 GMT expires: - '-1' pragma: @@ -934,32 +940,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestdtrjywagf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestdtrjywagf-8ecadf-14d61130.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestoieiolc4i-8ecadf\",\n \"fqdn\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoieiolc4i-8ecadf-976ec103.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -967,7 +973,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/81305013-ce52-4063-a41e-cf235810062c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0908e3b6-2dba-4633-9a40-561f336f99a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -985,11 +991,11 @@ interactions: cache-control: - no-cache content-length: - - '3815' + - '3808' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:14 GMT + - Tue, 10 May 2022 04:37:15 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml index 6f85004fdcd..7e2ad76f2a3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:11:27Z"},"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","date":"2022-05-10T04:13:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:11:27 GMT + - Tue, 10 May 2022 04:13:14 GMT expires: - '-1' pragma: @@ -44,19 +44,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestklgr6bfnm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnnzbfs5ym-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": true}}' + "standard"}, "disableLocalAccounts": true, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -67,39 +69,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1418' + - '1551' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestklgr6bfnm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnnzbfs5ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -111,21 +113,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3056' + - '3235' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:29 GMT + - Tue, 10 May 2022 04:13:18 GMT expires: - '-1' pragma: @@ -137,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -156,14 +160,63 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:13: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 --enable-managed-identity --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -172,7 +225,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:59 GMT + - Tue, 10 May 2022 04:14:18 GMT expires: - '-1' pragma: @@ -205,14 +258,14 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +274,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:29 GMT + - Tue, 10 May 2022 04:14:48 GMT expires: - '-1' pragma: @@ -254,14 +307,14 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:59 GMT + - Tue, 10 May 2022 04:15:18 GMT expires: - '-1' pragma: @@ -303,14 +356,14 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +372,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:30 GMT + - Tue, 10 May 2022 04:15:48 GMT expires: - '-1' pragma: @@ -352,14 +405,14 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +421,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:00 GMT + - Tue, 10 May 2022 04:16:18 GMT expires: - '-1' pragma: @@ -401,14 +454,14 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +470,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:30 GMT + - Tue, 10 May 2022 04:16:49 GMT expires: - '-1' pragma: @@ -450,15 +503,15 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c8c9c52-8aff-4877-bccb-57fe980d5b47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78b89911-8a8c-4dbd-ab17-b49243b7b0a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"529c8c8c-ff8a-7748-bccb-57fe980d5b47\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:11:30.06Z\",\n \"endTime\": - \"2022-04-14T05:14:30.9027985Z\"\n }" + string: "{\n \"name\": \"1199b878-8c8a-bd4d-ab17-b49243b7b0a9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:13:18.85Z\",\n \"endTime\": + \"2022-05-10T04:16:56.9002851Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +520,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:59 GMT + - Tue, 10 May 2022 04:17:19 GMT expires: - '-1' pragma: @@ -500,39 +553,39 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestklgr6bfnm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnnzbfs5ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3fb796cc-ac9e-4285-9f39-a6ffd5659fbc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dd4a1391-b75c-48dd-90ba-2462d499d046\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -550,11 +603,11 @@ interactions: cache-control: - no-cache content-length: - - '3709' + - '3702' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:00 GMT + - Tue, 10 May 2022 04:17:19 GMT expires: - '-1' pragma: @@ -586,39 +639,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestklgr6bfnm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnnzbfs5ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3fb796cc-ac9e-4285-9f39-a6ffd5659fbc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dd4a1391-b75c-48dd-90ba-2462d499d046\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -636,11 +689,11 @@ interactions: cache-control: - no-cache content-length: - - '3709' + - '3702' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:01 GMT + - Tue, 10 May 2022 04:17:20 GMT expires: - '-1' pragma: @@ -660,26 +713,27 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestklgr6bfnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestnnzbfs5ym-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3fb796cc-ac9e-4285-9f39-a6ffd5659fbc"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dd4a1391-b75c-48dd-90ba-2462d499d046"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -690,45 +744,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2457' + - '2538' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestklgr6bfnm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnnzbfs5ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3fb796cc-ac9e-4285-9f39-a6ffd5659fbc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dd4a1391-b75c-48dd-90ba-2462d499d046\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -738,21 +792,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a9104d4-e819-442e-9278-0b1f0ed85b0d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eacdef3-903c-4f54-8465-630a0a042106?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3708' + - '3890' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:03 GMT + - Tue, 10 May 2022 04:17:23 GMT expires: - '-1' pragma: @@ -768,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK @@ -786,23 +843,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a9104d4-e819-442e-9278-0b1f0ed85b0d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eacdef3-903c-4f54-8465-630a0a042106?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d404912a-19e8-2e44-9278-0b1f0ed85b0d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:04.0933333Z\"\n }" + string: "{\n \"name\": \"f3deac6e-3c90-544f-8465-630a0a042106\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:23.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:34 GMT + - Tue, 10 May 2022 04:17:52 GMT expires: - '-1' pragma: @@ -834,23 +891,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a9104d4-e819-442e-9278-0b1f0ed85b0d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eacdef3-903c-4f54-8465-630a0a042106?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d404912a-19e8-2e44-9278-0b1f0ed85b0d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:04.0933333Z\"\n }" + string: "{\n \"name\": \"f3deac6e-3c90-544f-8465-630a0a042106\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:23.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:04 GMT + - Tue, 10 May 2022 04:18:22 GMT expires: - '-1' pragma: @@ -882,24 +939,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a9104d4-e819-442e-9278-0b1f0ed85b0d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eacdef3-903c-4f54-8465-630a0a042106?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d404912a-19e8-2e44-9278-0b1f0ed85b0d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:15:04.0933333Z\",\n \"endTime\": - \"2022-04-14T05:16:21.876775Z\"\n }" + string: "{\n \"name\": \"f3deac6e-3c90-544f-8465-630a0a042106\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:17:23.01Z\",\n \"endTime\": + \"2022-05-10T04:18:42.5190566Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:34 GMT + - Tue, 10 May 2022 04:18:52 GMT expires: - '-1' pragma: @@ -931,39 +988,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestklgr6bfnm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestklgr6bfnm-8ecadf-02e0d9d2.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnnzbfs5ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnnzbfs5ym-8ecadf-5d027927.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3fb796cc-ac9e-4285-9f39-a6ffd5659fbc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dd4a1391-b75c-48dd-90ba-2462d499d046\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -981,11 +1038,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:34 GMT + - Tue, 10 May 2022 04:18:52 GMT expires: - '-1' pragma: @@ -1019,26 +1076,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab55a357-184c-4565-874a-230fe022d761?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/514dc83b-dafc-443f-8f2f-9a79a8710432?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:16:35 GMT + - Tue, 10 May 2022 04:18:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ab55a357-184c-4565-874a-230fe022d761?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/514dc83b-dafc-443f-8f2f-9a79a8710432?api-version=2016-03-30 pragma: - no-cache server: @@ -1048,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14989' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml index 2ac6d07a753..aad5908fc7f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:05:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:17:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:05:19 GMT + - Tue, 10 May 2022 04:17:33 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestak7j3mlid-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:21 GMT + - Tue, 10 May 2022 04:17:36 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' status: code: 201 message: Created @@ -153,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +173,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:05:51 GMT + - Tue, 10 May 2022 04:18:07 GMT expires: - '-1' pragma: @@ -201,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:21 GMT + - Tue, 10 May 2022 04:18:37 GMT expires: - '-1' pragma: @@ -249,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:06:52 GMT + - Tue, 10 May 2022 04:19:07 GMT expires: - '-1' pragma: @@ -297,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:22 GMT + - Tue, 10 May 2022 04:19:37 GMT expires: - '-1' pragma: @@ -345,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:07:52 GMT + - Tue, 10 May 2022 04:20:07 GMT expires: - '-1' pragma: @@ -393,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:21 GMT + - Tue, 10 May 2022 04:20:38 GMT expires: - '-1' pragma: @@ -441,15 +445,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d3ab545-0de6-498f-beae-12108227135d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"45b53a3d-e60d-8f49-beae-12108227135d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:05:21.8833333Z\",\n \"endTime\": - \"2022-04-14T05:08:28.0766645Z\"\n }" + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:21:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7bf49e2-f8bf-4606-a0ac-542551a19111?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e249bfd7-bff8-0646-a0ac-542551a19111\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:17:37.6333333Z\",\n \"endTime\": + \"2022-05-10T04:21:22.3245735Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +510,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:51 GMT + - Tue, 10 May 2022 04:21:37 GMT expires: - '-1' pragma: @@ -490,39 +542,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:52 GMT + - Tue, 10 May 2022 04:21:38 GMT expires: - '-1' pragma: @@ -576,39 +628,39 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +678,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:53 GMT + - Tue, 10 May 2022 04:21:39 GMT expires: - '-1' pragma: @@ -650,15 +702,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestak7j3mlid-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -666,7 +718,7 @@ interactions: "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/a709ed86-960c-406a-b844-8dab0c64e7bd"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd"}]}, "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"}}, @@ -681,38 +733,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2547' + - '2540' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -721,7 +773,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,21 +783,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a12335f2-eed8-4344-8ad3-73e2ac961c06?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6e910ed-8664-438a-8a6c-8c20e630c402?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3900' + - '4079' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:55 GMT + - Tue, 10 May 2022 04:21:41 GMT expires: - '-1' pragma: @@ -761,7 +815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1194' status: code: 200 message: OK @@ -779,14 +833,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a12335f2-eed8-4344-8ad3-73e2ac961c06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6e910ed-8664-438a-8a6c-8c20e630c402?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f23523a1-d8ee-4443-8ad3-73e2ac961c06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:55.3233333Z\"\n }" + string: "{\n \"name\": \"ed10e9c6-6486-8a43-8a6c-8c20e630c402\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:41.4466666Z\"\n }" headers: cache-control: - no-cache @@ -795,7 +849,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:24 GMT + - Tue, 10 May 2022 04:22:11 GMT expires: - '-1' pragma: @@ -827,14 +881,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a12335f2-eed8-4344-8ad3-73e2ac961c06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6e910ed-8664-438a-8a6c-8c20e630c402?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f23523a1-d8ee-4443-8ad3-73e2ac961c06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:55.3233333Z\"\n }" + string: "{\n \"name\": \"ed10e9c6-6486-8a43-8a6c-8c20e630c402\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:41.4466666Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +897,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:54 GMT + - Tue, 10 May 2022 04:22:40 GMT expires: - '-1' pragma: @@ -875,15 +929,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a12335f2-eed8-4344-8ad3-73e2ac961c06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6e910ed-8664-438a-8a6c-8c20e630c402?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f23523a1-d8ee-4443-8ad3-73e2ac961c06\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:08:55.3233333Z\",\n \"endTime\": - \"2022-04-14T05:10:15.6888134Z\"\n }" + string: "{\n \"name\": \"ed10e9c6-6486-8a43-8a6c-8c20e630c402\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:21:41.4466666Z\",\n \"endTime\": + \"2022-05-10T04:22:53.2395072Z\"\n }" headers: cache-control: - no-cache @@ -892,7 +946,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:25 GMT + - Tue, 10 May 2022 04:23:11 GMT expires: - '-1' pragma: @@ -924,32 +978,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -960,7 +1014,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -978,11 +1032,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:26 GMT + - Tue, 10 May 2022 04:23:12 GMT expires: - '-1' pragma: @@ -1015,32 +1069,32 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1051,7 +1105,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1069,11 +1123,11 @@ interactions: cache-control: - no-cache content-length: - - '4279' + - '4272' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:26 GMT + - Tue, 10 May 2022 04:23:12 GMT expires: - '-1' pragma: @@ -1093,15 +1147,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestak7j3mlid-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "120s"}}}, "nodeResourceGroup": @@ -1110,11 +1164,12 @@ interactions: "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, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1125,39 +1180,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2603' + - '2684' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1166,7 +1221,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1176,21 +1231,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/423443cf-936c-4c17-97f8-ea289586f9dd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d87d273-d769-4b73-a3be-51cca6b4ba56?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3901' + - '4083' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:28 GMT + - Tue, 10 May 2022 04:23:14 GMT expires: - '-1' pragma: @@ -1206,7 +1264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1197' status: code: 200 message: OK @@ -1225,14 +1283,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/423443cf-936c-4c17-97f8-ea289586f9dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d87d273-d769-4b73-a3be-51cca6b4ba56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf433442-6c93-174c-97f8-ea289586f9dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:28.7933333Z\"\n }" + string: "{\n \"name\": \"73d2876d-69d7-734b-a3be-51cca6b4ba56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:14.9133333Z\"\n }" headers: cache-control: - no-cache @@ -1241,7 +1299,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:58 GMT + - Tue, 10 May 2022 04:23:45 GMT expires: - '-1' pragma: @@ -1274,14 +1332,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/423443cf-936c-4c17-97f8-ea289586f9dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d87d273-d769-4b73-a3be-51cca6b4ba56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf433442-6c93-174c-97f8-ea289586f9dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:28.7933333Z\"\n }" + string: "{\n \"name\": \"73d2876d-69d7-734b-a3be-51cca6b4ba56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:14.9133333Z\"\n }" headers: cache-control: - no-cache @@ -1290,7 +1348,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:28 GMT + - Tue, 10 May 2022 04:24:15 GMT expires: - '-1' pragma: @@ -1323,24 +1381,24 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/423443cf-936c-4c17-97f8-ea289586f9dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d87d273-d769-4b73-a3be-51cca6b4ba56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cf433442-6c93-174c-97f8-ea289586f9dd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:10:28.7933333Z\",\n \"endTime\": - \"2022-04-14T05:11:45.595185Z\"\n }" + string: "{\n \"name\": \"73d2876d-69d7-734b-a3be-51cca6b4ba56\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:23:14.9133333Z\",\n \"endTime\": + \"2022-05-10T04:24:27.0475949Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:58 GMT + - Tue, 10 May 2022 04:24:45 GMT expires: - '-1' pragma: @@ -1373,32 +1431,32 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1409,7 +1467,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1427,11 +1485,11 @@ interactions: cache-control: - no-cache content-length: - - '4280' + - '4273' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:58 GMT + - Tue, 10 May 2022 04:24:45 GMT expires: - '-1' pragma: @@ -1463,32 +1521,32 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1499,7 +1557,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1517,11 +1575,11 @@ interactions: cache-control: - no-cache content-length: - - '4280' + - '4273' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:59 GMT + - Tue, 10 May 2022 04:24:45 GMT expires: - '-1' pragma: @@ -1541,15 +1599,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestak7j3mlid-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "120s"}}}, "nodeResourceGroup": @@ -1558,11 +1616,12 @@ interactions: "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, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1573,38 +1632,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2604' + - '2685' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1613,7 +1672,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1623,21 +1682,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07e0af01-b2c8-4871-9088-2fb5eda9f8f0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e304521-cd78-4522-a30c-37337f0d1549?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3902' + - '4084' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:01 GMT + - Tue, 10 May 2022 04:24:48 GMT expires: - '-1' pragma: @@ -1653,7 +1715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 200 message: OK @@ -1671,14 +1733,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07e0af01-b2c8-4871-9088-2fb5eda9f8f0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e304521-cd78-4522-a30c-37337f0d1549?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01afe007-c8b2-7148-9088-2fb5eda9f8f0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:01.9366666Z\"\n }" + string: "{\n \"name\": \"2145301e-78cd-2245-a30c-37337f0d1549\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:24:49.1766666Z\"\n }" headers: cache-control: - no-cache @@ -1687,7 +1749,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:31 GMT + - Tue, 10 May 2022 04:25:18 GMT expires: - '-1' pragma: @@ -1719,14 +1781,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07e0af01-b2c8-4871-9088-2fb5eda9f8f0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e304521-cd78-4522-a30c-37337f0d1549?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01afe007-c8b2-7148-9088-2fb5eda9f8f0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:12:01.9366666Z\"\n }" + string: "{\n \"name\": \"2145301e-78cd-2245-a30c-37337f0d1549\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:24:49.1766666Z\"\n }" headers: cache-control: - no-cache @@ -1735,7 +1797,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:01 GMT + - Tue, 10 May 2022 04:25:49 GMT expires: - '-1' pragma: @@ -1767,15 +1829,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07e0af01-b2c8-4871-9088-2fb5eda9f8f0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e304521-cd78-4522-a30c-37337f0d1549?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01afe007-c8b2-7148-9088-2fb5eda9f8f0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:12:01.9366666Z\",\n \"endTime\": - \"2022-04-14T05:13:12.3117244Z\"\n }" + string: "{\n \"name\": \"2145301e-78cd-2245-a30c-37337f0d1549\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:24:49.1766666Z\",\n \"endTime\": + \"2022-05-10T04:25:59.7448121Z\"\n }" headers: cache-control: - no-cache @@ -1784,7 +1846,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:32 GMT + - Tue, 10 May 2022 04:26:19 GMT expires: - '-1' pragma: @@ -1816,32 +1878,32 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1852,7 +1914,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1870,11 +1932,11 @@ interactions: cache-control: - no-cache content-length: - - '4281' + - '4274' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:32 GMT + - Tue, 10 May 2022 04:26:19 GMT expires: - '-1' pragma: @@ -1906,32 +1968,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -1942,7 +2004,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1960,11 +2022,11 @@ interactions: cache-control: - no-cache content-length: - - '4281' + - '4274' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:33 GMT + - Tue, 10 May 2022 04:26:20 GMT expires: - '-1' pragma: @@ -1984,15 +2046,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestak7j3mlid-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -2000,7 +2062,7 @@ interactions: "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/a709ed86-960c-406a-b844-8dab0c64e7bd"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd"}]}, "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"}}, @@ -2015,38 +2077,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2473' + - '2466' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2054,7 +2116,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2064,21 +2126,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ba1c009a-3186-40d9-aefe-f886782386ad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd8f1bc-1808-4085-aa76-1b202e8c7bd8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3823' + - '4002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:35 GMT + - Tue, 10 May 2022 04:26:22 GMT expires: - '-1' pragma: @@ -2094,7 +2158,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd8f1bc-1808-4085-aa76-1b202e8c7bd8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bcf1d84f-0818-8540-aa76-1b202e8c7bd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:26:22.9866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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 @@ -2112,14 +2224,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ba1c009a-3186-40d9-aefe-f886782386ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd8f1bc-1808-4085-aa76-1b202e8c7bd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a001cba-8631-d940-aefe-f886782386ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:35.4066666Z\"\n }" + string: "{\n \"name\": \"bcf1d84f-0818-8540-aa76-1b202e8c7bd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:26:22.9866666Z\"\n }" headers: cache-control: - no-cache @@ -2128,7 +2240,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:05 GMT + - Tue, 10 May 2022 04:27:22 GMT expires: - '-1' pragma: @@ -2160,14 +2272,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ba1c009a-3186-40d9-aefe-f886782386ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd8f1bc-1808-4085-aa76-1b202e8c7bd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a001cba-8631-d940-aefe-f886782386ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:35.4066666Z\"\n }" + string: "{\n \"name\": \"bcf1d84f-0818-8540-aa76-1b202e8c7bd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:26:22.9866666Z\"\n }" headers: cache-control: - no-cache @@ -2176,7 +2288,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:35 GMT + - Tue, 10 May 2022 04:27:52 GMT expires: - '-1' pragma: @@ -2208,15 +2320,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ba1c009a-3186-40d9-aefe-f886782386ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd8f1bc-1808-4085-aa76-1b202e8c7bd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9a001cba-8631-d940-aefe-f886782386ad\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:13:35.4066666Z\",\n \"endTime\": - \"2022-04-14T05:14:55.5560747Z\"\n }" + string: "{\n \"name\": \"bcf1d84f-0818-8540-aa76-1b202e8c7bd8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:26:22.9866666Z\",\n \"endTime\": + \"2022-05-10T04:28:04.4942968Z\"\n }" headers: cache-control: - no-cache @@ -2225,7 +2337,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:05 GMT + - Tue, 10 May 2022 04:28:22 GMT expires: - '-1' pragma: @@ -2257,32 +2369,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2290,7 +2402,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2308,11 +2420,11 @@ interactions: cache-control: - no-cache content-length: - - '3825' + - '3818' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:05 GMT + - Tue, 10 May 2022 04:28:22 GMT expires: - '-1' pragma: @@ -2345,32 +2457,32 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2378,7 +2490,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2396,11 +2508,11 @@ interactions: cache-control: - no-cache content-length: - - '3825' + - '3818' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:06 GMT + - Tue, 10 May 2022 04:28:24 GMT expires: - '-1' pragma: @@ -2420,15 +2532,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestak7j3mlid-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestm4ruzibkg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "1h"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -2436,7 +2548,7 @@ interactions: "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/a709ed86-960c-406a-b844-8dab0c64e7bd"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd"}]}, "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"}}, @@ -2451,39 +2563,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2546' + - '2539' Content-Type: - application/json ParameterSetName: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2492,7 +2604,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2502,21 +2614,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1bbfd38a-ea3b-4c8d-8ae3-5ee08e6bc4df?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/518ca612-57bf-4f09-a335-04eff5616c41?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3899' + - '4078' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:08 GMT + - Tue, 10 May 2022 04:28:26 GMT expires: - '-1' pragma: @@ -2532,7 +2646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 200 message: OK @@ -2551,23 +2665,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1bbfd38a-ea3b-4c8d-8ae3-5ee08e6bc4df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/518ca612-57bf-4f09-a335-04eff5616c41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ad3bf1b-3bea-8d4c-8ae3-5ee08e6bc4df\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:08.83Z\"\n }" + string: "{\n \"name\": \"12a68c51-bf57-094f-a335-04eff5616c41\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:26.9266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:38 GMT + - Tue, 10 May 2022 04:28:56 GMT expires: - '-1' pragma: @@ -2600,23 +2714,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1bbfd38a-ea3b-4c8d-8ae3-5ee08e6bc4df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/518ca612-57bf-4f09-a335-04eff5616c41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ad3bf1b-3bea-8d4c-8ae3-5ee08e6bc4df\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:08.83Z\"\n }" + string: "{\n \"name\": \"12a68c51-bf57-094f-a335-04eff5616c41\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:26.9266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:08 GMT + - Tue, 10 May 2022 04:29:27 GMT expires: - '-1' pragma: @@ -2649,24 +2763,24 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1bbfd38a-ea3b-4c8d-8ae3-5ee08e6bc4df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/518ca612-57bf-4f09-a335-04eff5616c41?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8ad3bf1b-3bea-8d4c-8ae3-5ee08e6bc4df\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:15:08.83Z\",\n \"endTime\": - \"2022-04-14T05:16:34.2046797Z\"\n }" + string: "{\n \"name\": \"12a68c51-bf57-094f-a335-04eff5616c41\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:28:26.9266666Z\",\n \"endTime\": + \"2022-05-10T04:29:50.935098Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:29:57 GMT expires: - '-1' pragma: @@ -2699,32 +2813,32 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestak7j3mlid-8ecadf\",\n \"fqdn\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestak7j3mlid-8ecadf-d2319b96.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestm4ruzibkg-8ecadf\",\n \"fqdn\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm4ruzibkg-8ecadf-3d386a57.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -2735,7 +2849,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a709ed86-960c-406a-b844-8dab0c64e7bd\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d5a01c65-c1e5-4763-a119-681024f938bd\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2753,11 +2867,11 @@ interactions: cache-control: - no-cache content-length: - - '4278' + - '4271' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:29:57 GMT expires: - '-1' pragma: @@ -2791,26 +2905,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2687623-73a4-47f2-8222-de464950e92f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7376ff0-3a5d-4a07-83e3-aceb1726b0db?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:16:40 GMT + - Tue, 10 May 2022 04:29:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e2687623-73a4-47f2-8222-de464950e92f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d7376ff0-3a5d-4a07-83e3-aceb1726b0db?api-version=2016-03-30 pragma: - no-cache server: @@ -2820,7 +2934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14995' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml index d458076e2a9..25ce6a5b4f4 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:13:41Z"},"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","date":"2022-05-10T04:16:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:13:43 GMT + - Tue, 10 May 2022 04:16:23 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4axody235-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmevmvwmx6-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1418' + - '1551' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4axody235-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4axody235-8ecadf-986a78db.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4axody235-8ecadf-986a78db.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmevmvwmx6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3053' + - '3232' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:48 GMT + - Tue, 10 May 2022 04:16:30 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1189' status: code: 201 message: Created @@ -153,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +173,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:19 GMT + - Tue, 10 May 2022 04:17:00 GMT expires: - '-1' pragma: @@ -201,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:49 GMT + - Tue, 10 May 2022 04:17:30 GMT expires: - '-1' pragma: @@ -249,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:19 GMT + - Tue, 10 May 2022 04:18:00 GMT expires: - '-1' pragma: @@ -297,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:49 GMT + - Tue, 10 May 2022 04:18:30 GMT expires: - '-1' pragma: @@ -345,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:19 GMT + - Tue, 10 May 2022 04:19:00 GMT expires: - '-1' pragma: @@ -393,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:49 GMT + - Tue, 10 May 2022 04:19:30 GMT expires: - '-1' pragma: @@ -441,14 +445,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +461,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:19 GMT + - Tue, 10 May 2022 04:20:01 GMT expires: - '-1' pragma: @@ -489,14 +493,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:49 GMT + - Tue, 10 May 2022 04:20:31 GMT expires: - '-1' pragma: @@ -537,15 +541,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/46d222f9-5de6-42c5-9781-82f2840d0b40?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e00a56b5-b578-431d-a925-d2cc5357c98f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f922d246-e65d-c542-9781-82f2840d0b40\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:13:48.6833333Z\",\n \"endTime\": - \"2022-04-14T05:18:13.7607025Z\"\n }" + string: "{\n \"name\": \"b5560ae0-78b5-1d43-a925-d2cc5357c98f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:16:29.7233333Z\",\n \"endTime\": + \"2022-05-10T04:20:54.6979111Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +558,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:20 GMT + - Tue, 10 May 2022 04:21:01 GMT expires: - '-1' pragma: @@ -586,39 +590,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4axody235-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4axody235-8ecadf-986a78db.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4axody235-8ecadf-986a78db.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmevmvwmx6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/61735512-ae15-464d-9cab-929fed34f8f2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b122c62-da81-4cd7-9c66-7627d7c10a25\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -628,19 +632,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3704' + - '3883' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:20 GMT + - Tue, 10 May 2022 04:21:02 GMT expires: - '-1' pragma: @@ -672,39 +678,39 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4axody235-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4axody235-8ecadf-986a78db.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4axody235-8ecadf-986a78db.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmevmvwmx6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/61735512-ae15-464d-9cab-929fed34f8f2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b122c62-da81-4cd7-9c66-7627d7c10a25\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -714,19 +720,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3704' + - '3883' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:21 GMT + - Tue, 10 May 2022 04:21:03 GMT expires: - '-1' pragma: @@ -746,26 +754,28 @@ interactions: message: OK - request: body: '{"location": "eastus", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitest4axody235-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestmevmvwmx6-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_eastus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/61735512-ae15-464d-9cab-929fed34f8f2"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b122c62-da81-4cd7-9c66-7627d7c10a25"}]}, "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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -776,38 +786,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2446' + - '2572' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4axody235-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4axody235-8ecadf-986a78db.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4axody235-8ecadf-986a78db.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmevmvwmx6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n @@ -815,7 +825,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/61735512-ae15-464d-9cab-929fed34f8f2\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b122c62-da81-4cd7-9c66-7627d7c10a25\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -825,21 +835,23 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/753d0de0-dd24-4f7e-a93a-ef78235d4f17?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4188addc-8fa9-4309-8cbc-da581b3966dc?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3794' + - '3973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:25 GMT + - Tue, 10 May 2022 04:21:07 GMT expires: - '-1' pragma: @@ -855,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1196' status: code: 200 message: OK @@ -873,14 +885,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/753d0de0-dd24-4f7e-a93a-ef78235d4f17?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4188addc-8fa9-4309-8cbc-da581b3966dc?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e00d3d75-24dd-7e4f-a93a-ef78235d4f17\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:24.6766666Z\"\n }" + string: "{\n \"name\": \"dcad8841-a98f-0943-8cbc-da581b3966dc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:07.0666666Z\"\n }" headers: cache-control: - no-cache @@ -889,7 +901,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:56 GMT + - Tue, 10 May 2022 04:21:37 GMT expires: - '-1' pragma: @@ -921,14 +933,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/753d0de0-dd24-4f7e-a93a-ef78235d4f17?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4188addc-8fa9-4309-8cbc-da581b3966dc?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e00d3d75-24dd-7e4f-a93a-ef78235d4f17\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:24.6766666Z\"\n }" + string: "{\n \"name\": \"dcad8841-a98f-0943-8cbc-da581b3966dc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:07.0666666Z\"\n }" headers: cache-control: - no-cache @@ -937,7 +949,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:25 GMT + - Tue, 10 May 2022 04:22:07 GMT expires: - '-1' pragma: @@ -969,15 +981,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/753d0de0-dd24-4f7e-a93a-ef78235d4f17?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4188addc-8fa9-4309-8cbc-da581b3966dc?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e00d3d75-24dd-7e4f-a93a-ef78235d4f17\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:18:24.6766666Z\",\n \"endTime\": - \"2022-04-14T05:19:46.7349627Z\"\n }" + string: "{\n \"name\": \"dcad8841-a98f-0943-8cbc-da581b3966dc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:21:07.0666666Z\",\n \"endTime\": + \"2022-05-10T04:22:31.8604271Z\"\n }" headers: cache-control: - no-cache @@ -986,7 +998,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:55 GMT + - Tue, 10 May 2022 04:22:38 GMT expires: - '-1' pragma: @@ -1018,32 +1030,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4axody235-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4axody235-8ecadf-986a78db.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4axody235-8ecadf-986a78db.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmevmvwmx6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmevmvwmx6-8ecadf-56571310.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": @@ -1053,7 +1065,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/61735512-ae15-464d-9cab-929fed34f8f2\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b122c62-da81-4cd7-9c66-7627d7c10a25\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1063,19 +1075,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4150' + - '4329' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:56 GMT + - Tue, 10 May 2022 04:22:39 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml index 792236a8622..7bdc1ffde3a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:08:12Z"},"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","date":"2022-05-10T04:14:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:08:12 GMT + - Tue, 10 May 2022 04:14:56 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsi4q2air3-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestd6q5g3ynk-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsi4q2air3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd6q5g3ynk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:14 GMT + - Tue, 10 May 2022 04:15:00 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' status: code: 201 message: Created @@ -153,23 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:08:45 GMT + - Tue, 10 May 2022 04:15:30 GMT expires: - '-1' pragma: @@ -201,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:15 GMT + - Tue, 10 May 2022 04:16:00 GMT expires: - '-1' pragma: @@ -249,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:09:45 GMT + - Tue, 10 May 2022 04:16:30 GMT expires: - '-1' pragma: @@ -297,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:15 GMT + - Tue, 10 May 2022 04:17:00 GMT expires: - '-1' pragma: @@ -345,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:45 GMT + - Tue, 10 May 2022 04:17:30 GMT expires: - '-1' pragma: @@ -393,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:16 GMT + - Tue, 10 May 2022 04:18:00 GMT expires: - '-1' pragma: @@ -441,24 +445,120 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d67e0fd3-3cf9-4065-8503-ee44bbfca332?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d30f7ed6-f93c-6540-8503-ee44bbfca332\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:08:15.6033333Z\",\n \"endTime\": - \"2022-04-14T05:11:39.5268161Z\"\n }" + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:18: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:19: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9234758e-3bdb-4188-952e-62ac63a37803?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8e753492-db3b-8841-952e-62ac63a37803\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:15:00.57Z\",\n \"endTime\": + \"2022-05-10T04:19:15.2804985Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:46 GMT + - Tue, 10 May 2022 04:19:31 GMT expires: - '-1' pragma: @@ -490,39 +590,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsi4q2air3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd6q5g3ynk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/04c1c580-ae89-4372-b704-10b34849aa66\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c974e373-5364-4870-8cdf-0967b68f8081\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +640,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:46 GMT + - Tue, 10 May 2022 04:19:31 GMT expires: - '-1' pragma: @@ -576,39 +676,39 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsi4q2air3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd6q5g3ynk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/04c1c580-ae89-4372-b704-10b34849aa66\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c974e373-5364-4870-8cdf-0967b68f8081\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +726,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:46 GMT + - Tue, 10 May 2022 04:19:32 GMT expires: - '-1' pragma: @@ -650,15 +750,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestsi4q2air3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestd6q5g3ynk-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, "config": {}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": @@ -666,7 +766,7 @@ interactions: "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/04c1c580-ae89-4372-b704-10b34849aa66"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c974e373-5364-4870-8cdf-0967b68f8081"}]}, "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"}}, @@ -681,38 +781,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2473' + - '2466' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsi4q2air3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd6q5g3ynk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -720,7 +820,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/04c1c580-ae89-4372-b704-10b34849aa66\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c974e373-5364-4870-8cdf-0967b68f8081\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -730,21 +830,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/646d4095-fa66-45b4-b347-f1fed425adc3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff9ea2b-6609-4389-b9e6-82fa1a8e5a3b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3809' + - '3988' content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:49 GMT + - Tue, 10 May 2022 04:19:34 GMT expires: - '-1' pragma: @@ -760,7 +862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 200 message: OK @@ -778,23 +880,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/646d4095-fa66-45b4-b347-f1fed425adc3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff9ea2b-6609-4389-b9e6-82fa1a8e5a3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95406d64-66fa-b445-b347-f1fed425adc3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:49.75Z\"\n }" + string: "{\n \"name\": \"2beaf9ef-0966-8943-b9e6-82fa1a8e5a3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:19:34.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:20 GMT + - Tue, 10 May 2022 04:20:04 GMT expires: - '-1' pragma: @@ -826,23 +928,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/646d4095-fa66-45b4-b347-f1fed425adc3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff9ea2b-6609-4389-b9e6-82fa1a8e5a3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95406d64-66fa-b445-b347-f1fed425adc3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:11:49.75Z\"\n }" + string: "{\n \"name\": \"2beaf9ef-0966-8943-b9e6-82fa1a8e5a3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:19:34.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:49 GMT + - Tue, 10 May 2022 04:20:34 GMT expires: - '-1' pragma: @@ -874,24 +976,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/646d4095-fa66-45b4-b347-f1fed425adc3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eff9ea2b-6609-4389-b9e6-82fa1a8e5a3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95406d64-66fa-b445-b347-f1fed425adc3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:11:49.75Z\",\n \"endTime\": - \"2022-04-14T05:13:07.8720725Z\"\n }" + string: "{\n \"name\": \"2beaf9ef-0966-8943-b9e6-82fa1a8e5a3b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:19:34.6666666Z\",\n \"endTime\": + \"2022-05-10T04:21:01.3033208Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:19 GMT + - Tue, 10 May 2022 04:21:04 GMT expires: - '-1' pragma: @@ -923,32 +1025,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsi4q2air3-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsi4q2air3-8ecadf-a94e63e4.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd6q5g3ynk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd6q5g3ynk-8ecadf-adca8a3c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -958,7 +1060,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/04c1c580-ae89-4372-b704-10b34849aa66\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c974e373-5364-4870-8cdf-0967b68f8081\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -976,11 +1078,11 @@ interactions: cache-control: - no-cache content-length: - - '4175' + - '4168' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:20 GMT + - Tue, 10 May 2022 04:21:04 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml index a234073032f..8101a2f36a5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:26:25Z"},"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","date":"2022-05-10T04:18:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:25 GMT + - Tue, 10 May 2022 04:18:55 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesta367j2vrn-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyljpnmlkm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesta367j2vrn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyljpnmlkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:27 GMT + - Tue, 10 May 2022 04:18:58 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 201 message: Created @@ -153,23 +157,71 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:19: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:58 GMT + - Tue, 10 May 2022 04:19:58 GMT expires: - '-1' pragma: @@ -201,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:28 GMT + - Tue, 10 May 2022 04:20:28 GMT expires: - '-1' pragma: @@ -249,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:58 GMT + - Tue, 10 May 2022 04:20:58 GMT expires: - '-1' pragma: @@ -297,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:28 GMT + - Tue, 10 May 2022 04:21:28 GMT expires: - '-1' pragma: @@ -345,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:58 GMT + - Tue, 10 May 2022 04:21:59 GMT expires: - '-1' pragma: @@ -393,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:28 GMT + - Tue, 10 May 2022 04:22:28 GMT expires: - '-1' pragma: @@ -441,24 +493,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d419a25-c416-4797-9d1a-79449a19b3de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"259a419d-16c4-9747-9d1a-79449a19b3de\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:26:28.45Z\",\n \"endTime\": - \"2022-04-14T05:29:51.0382166Z\"\n }" + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:58 GMT + - Tue, 10 May 2022 04:22:59 GMT expires: - '-1' pragma: @@ -490,39 +541,88 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7820964-2b63-4650-9ac9-c26e7ea14e43?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"640982d7-632b-5046-9ac9-c26e7ea14e43\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:18:58.7433333Z\",\n \"endTime\": + \"2022-05-10T04:23:14.2967765Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesta367j2vrn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyljpnmlkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/897278e3-ab75-4870-930c-4cd8ce82c018\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/86766b45-1426-4235-bbb9-cedf3373e647\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -540,11 +640,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:58 GMT + - Tue, 10 May 2022 04:23:29 GMT expires: - '-1' pragma: @@ -576,39 +676,39 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesta367j2vrn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyljpnmlkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/897278e3-ab75-4870-930c-4cd8ce82c018\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/86766b45-1426-4235-bbb9-cedf3373e647\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -626,11 +726,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:00 GMT + - Tue, 10 May 2022 04:23:30 GMT expires: - '-1' pragma: @@ -650,15 +750,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesta367j2vrn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestyljpnmlkm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -666,7 +766,7 @@ interactions: "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/897278e3-ab75-4870-930c-4cd8ce82c018"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/86766b45-1426-4235-bbb9-cedf3373e647"}]}, "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"}}, @@ -681,38 +781,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2511' + - '2504' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesta367j2vrn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyljpnmlkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -721,7 +821,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/897278e3-ab75-4870-930c-4cd8ce82c018\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/86766b45-1426-4235-bbb9-cedf3373e647\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -731,21 +831,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee52a5f7-b286-4d8b-a673-c9700ee04f2a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2dc8ac2c-6c79-46ef-84da-a0193f8e084a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3858' + - '4037' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:02 GMT + - Tue, 10 May 2022 04:23:32 GMT expires: - '-1' pragma: @@ -761,7 +863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' status: code: 200 message: OK @@ -779,23 +881,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee52a5f7-b286-4d8b-a673-c9700ee04f2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2dc8ac2c-6c79-46ef-84da-a0193f8e084a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7a552ee-86b2-8b4d-a673-c9700ee04f2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:02.33Z\"\n }" + string: "{\n \"name\": \"2cacc82d-796c-ef46-84da-a0193f8e084a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:33.2166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:32 GMT + - Tue, 10 May 2022 04:24:02 GMT expires: - '-1' pragma: @@ -827,23 +929,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee52a5f7-b286-4d8b-a673-c9700ee04f2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2dc8ac2c-6c79-46ef-84da-a0193f8e084a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7a552ee-86b2-8b4d-a673-c9700ee04f2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:02.33Z\"\n }" + string: "{\n \"name\": \"2cacc82d-796c-ef46-84da-a0193f8e084a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:33.2166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:02 GMT + - Tue, 10 May 2022 04:24:33 GMT expires: - '-1' pragma: @@ -875,24 +977,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee52a5f7-b286-4d8b-a673-c9700ee04f2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2dc8ac2c-6c79-46ef-84da-a0193f8e084a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7a552ee-86b2-8b4d-a673-c9700ee04f2a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:30:02.33Z\",\n \"endTime\": - \"2022-04-14T05:31:29.6719312Z\"\n }" + string: "{\n \"name\": \"2cacc82d-796c-ef46-84da-a0193f8e084a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:23:33.2166666Z\",\n \"endTime\": + \"2022-05-10T04:24:53.6959409Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:31 GMT + - Tue, 10 May 2022 04:25:03 GMT expires: - '-1' pragma: @@ -924,32 +1026,32 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesta367j2vrn-8ecadf\",\n \"fqdn\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesta367j2vrn-8ecadf-8e5af685.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestyljpnmlkm-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyljpnmlkm-8ecadf-eb94951d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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\": @@ -960,7 +1062,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/897278e3-ab75-4870-930c-4cd8ce82c018\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/86766b45-1426-4235-bbb9-cedf3373e647\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -978,11 +1080,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4220' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:32 GMT + - Tue, 10 May 2022 04:25:03 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml index ebc3535e9d3..a1fd3e18921 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml @@ -1,19 +1,21 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsigtj42rb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3vhwjvofc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,39 +26,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -68,21 +70,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:24 GMT + - Tue, 10 May 2022 04:21:09 GMT expires: - '-1' pragma: @@ -94,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1194' status: code: 201 message: Created @@ -113,14 +117,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -129,7 +133,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:10:54 GMT + - Tue, 10 May 2022 04:21:39 GMT expires: - '-1' pragma: @@ -162,14 +166,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +182,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:25 GMT + - Tue, 10 May 2022 04:22:10 GMT expires: - '-1' pragma: @@ -211,14 +215,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +231,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:11:55 GMT + - Tue, 10 May 2022 04:22:40 GMT expires: - '-1' pragma: @@ -260,14 +264,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +280,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:25 GMT + - Tue, 10 May 2022 04:23:10 GMT expires: - '-1' pragma: @@ -309,14 +313,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +329,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:12:55 GMT + - Tue, 10 May 2022 04:23:40 GMT expires: - '-1' pragma: @@ -358,14 +362,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +378,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:24 GMT + - Tue, 10 May 2022 04:24:11 GMT expires: - '-1' pragma: @@ -407,14 +411,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +427,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:55 GMT + - Tue, 10 May 2022 04:24:41 GMT expires: - '-1' pragma: @@ -456,14 +460,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +476,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:25 GMT + - Tue, 10 May 2022 04:25:10 GMT expires: - '-1' pragma: @@ -505,15 +509,15 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e7b901-6b72-4569-8eda-1f93009adc4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4759c180-ff8b-4e49-b5a0-268ae1a118c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01b9e708-726b-6945-8eda-1f93009adc4f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:10:25.1833333Z\",\n \"endTime\": - \"2022-04-14T05:14:31.4974318Z\"\n }" + string: "{\n \"name\": \"80c15947-8bff-494e-b5a0-268ae1a118c7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:21:10.0433333Z\",\n \"endTime\": + \"2022-05-10T04:25:12.3679866Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +526,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:55 GMT + - Tue, 10 May 2022 04:25:41 GMT expires: - '-1' pragma: @@ -555,39 +559,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -605,11 +609,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:55 GMT + - Tue, 10 May 2022 04:25:41 GMT expires: - '-1' pragma: @@ -641,39 +645,39 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -691,11 +695,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:56 GMT + - Tue, 10 May 2022 04:25:42 GMT expires: - '-1' pragma: @@ -727,12 +731,12 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-04-14T05:10:21Z","deletion_due_time":"1650172265","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T04:21:05Z","deletion_due_time":"1652415729","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -741,7 +745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:14:57 GMT + - Tue, 10 May 2022 04:25:42 GMT expires: - '-1' pragma: @@ -769,7 +773,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 response: @@ -781,7 +785,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:14:56 GMT + - Tue, 10 May 2022 04:25:41 GMT expires: - '-1' pragma: @@ -807,7 +811,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview response: @@ -815,19 +819,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:14:31 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:25:24 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -835,18 +841,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:57 GMT + - Tue, 10 May 2022 04:25:42 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -869,7 +876,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview response: @@ -877,19 +884,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:14:31 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:25:24 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -897,18 +906,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:57 GMT + - Tue, 10 May 2022 04:25:42 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -931,7 +941,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 response: @@ -1043,7 +1053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:14:58 GMT + - Tue, 10 May 2022 04:25:44 GMT expires: - '-1' pragma: @@ -1071,7 +1081,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 response: @@ -1412,7 +1422,8 @@ interactions: Central","France South","South Africa North","South Africa West","UAE Central","UAE North","Switzerland North","Switzerland West","Germany North","Germany West Central","Norway East","Norway West","Jio India Central","Sweden South","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US 2 EUAP","Central US EUAP"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":["East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central US","South Central US","East US 2","Canada East","Canada Central","Central US","Australia East","Australia Southeast","Australia Central","Australia @@ -1422,7 +1433,7 @@ interactions: Central","France South","South Africa North","South Africa West","UAE Central","UAE North","Switzerland North","Switzerland West","Germany North","Germany West Central","Norway East","Norway West","Jio India Central","Sweden South","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2 EUAP","Central US EUAP"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2022-04-01","2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2022-04-01","2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2022-04-01","2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"metricbaselines","locations":["West Europe","North Europe"],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West @@ -1474,8 +1485,8 @@ interactions: Central","South Africa North","Switzerland North","Australia Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Brazil South","Jio India Central","Jio - India West","Sweden Central","South India","UAE Central","West US 3","Sweden - South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + India West","Sweden Central","South India","UAE Central","West US 3","West + India","Sweden South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West @@ -1485,7 +1496,8 @@ interactions: Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Central","West US 3","West India","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West @@ -1494,7 +1506,8 @@ interactions: Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + Central","West US 3","West India","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West @@ -1503,8 +1516,9 @@ interactions: Central","South Africa North","Switzerland North","Brazil South","Australia Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India - Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Jio India West","Sweden Central","Germany North","South India","West + India","UAE Central","West US 3","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East US","West Central US","South Central US","North Europe","West Europe","Southeast Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia @@ -1515,11 +1529,11 @@ interactions: cache-control: - no-cache content-length: - - '47880' + - '48005' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:14:59 GMT + - Tue, 10 May 2022 04:25:44 GMT expires: - '-1' pragma: @@ -1563,12 +1577,12 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: - string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"1400ec23-0000-0800-0000-6257add50000\""}' + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"100086ee-0000-0800-0000-6279e94a0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -1579,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:15:02 GMT + - Tue, 10 May 2022 04:25:47 GMT expires: - '-1' pragma: @@ -1620,13 +1634,13 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: string: '{"properties":{"description":"routes monitoring data to a Log Analytics - workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"1400ef23-0000-0800-0000-6257add70000\""}' + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"100088ee-0000-0800-0000-6279e94b0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -1637,7 +1651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:15:03 GMT + - Tue, 10 May 2022 04:25:48 GMT expires: - '-1' pragma: @@ -1661,15 +1675,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestsigtj42rb-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitest3vhwjvofc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", "useAADAuth": "True"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": @@ -1678,7 +1692,7 @@ interactions: "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/b3ac8f7d-7ef8-4fbf-9860-67157c732f33"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837"}]}, "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"}}, @@ -1693,38 +1707,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2727' + - '2720' Content-Type: - application/json ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1734,7 +1748,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1744,21 +1758,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85d11011-6df5-48d9-b8a5-7ede7786fd71?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50733f11-5dda-47c9-97b8-bd22cc66431b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4080' + - '4259' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:05 GMT + - Tue, 10 May 2022 04:25:51 GMT expires: - '-1' pragma: @@ -1774,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1196' status: code: 200 message: OK @@ -1792,23 +1808,23 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85d11011-6df5-48d9-b8a5-7ede7786fd71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50733f11-5dda-47c9-97b8-bd22cc66431b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1110d185-f56d-d948-b8a5-7ede7786fd71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:05.7533333Z\"\n }" + string: "{\n \"name\": \"113f7350-da5d-c947-97b8-bd22cc66431b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:51.5Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:35 GMT + - Tue, 10 May 2022 04:26:20 GMT expires: - '-1' pragma: @@ -1840,23 +1856,23 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85d11011-6df5-48d9-b8a5-7ede7786fd71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50733f11-5dda-47c9-97b8-bd22cc66431b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1110d185-f56d-d948-b8a5-7ede7786fd71\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:15:05.7533333Z\"\n }" + string: "{\n \"name\": \"113f7350-da5d-c947-97b8-bd22cc66431b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:51.5Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:05 GMT + - Tue, 10 May 2022 04:26:51 GMT expires: - '-1' pragma: @@ -1888,24 +1904,24 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/85d11011-6df5-48d9-b8a5-7ede7786fd71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50733f11-5dda-47c9-97b8-bd22cc66431b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1110d185-f56d-d948-b8a5-7ede7786fd71\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:15:05.7533333Z\",\n \"endTime\": - \"2022-04-14T05:16:26.3540275Z\"\n }" + string: "{\n \"name\": \"113f7350-da5d-c947-97b8-bd22cc66431b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:25:51.5Z\",\n \"endTime\": + \"2022-05-10T04:27:07.710822Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '163' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:35 GMT + - Tue, 10 May 2022 04:27:22 GMT expires: - '-1' pragma: @@ -1937,32 +1953,32 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1974,7 +1990,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1992,11 +2008,11 @@ interactions: cache-control: - no-cache content-length: - - '4439' + - '4432' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:36 GMT + - Tue, 10 May 2022 04:27:22 GMT expires: - '-1' pragma: @@ -2028,8 +2044,8 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -2046,7 +2062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:36 GMT + - Tue, 10 May 2022 04:27:21 GMT expires: - '-1' pragma: @@ -2085,15 +2101,15 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/480ef36c-c6f4-456a-bf19-b173b21b0b5d?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/fef19533-6652-43ae-b30e-45b1904b5dac?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T05:16:36.7119030Z","updatedOn":"2022-04-14T05:16:37.1494629Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/480ef36c-c6f4-456a-bf19-b173b21b0b5d","type":"Microsoft.Authorization/roleAssignments","name":"480ef36c-c6f4-456a-bf19-b173b21b0b5d"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:27:22.6392348Z","updatedOn":"2022-05-10T04:27:22.9205553Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/fef19533-6652-43ae-b30e-45b1904b5dac","type":"Microsoft.Authorization/roleAssignments","name":"fef19533-6652-43ae-b30e-45b1904b5dac"}' headers: cache-control: - no-cache @@ -2102,7 +2118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:27:23 GMT expires: - '-1' pragma: @@ -2114,7 +2130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1196' status: code: 201 message: Created @@ -2132,12 +2148,12 @@ interactions: ParameterSetName: - --method --url User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: - string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"1400ec23-0000-0800-0000-6257add50000\""}' + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"100086ee-0000-0800-0000-6279e94a0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -2148,7 +2164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:27:24 GMT expires: - '-1' pragma: @@ -2182,13 +2198,13 @@ interactions: ParameterSetName: - --method --url User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: string: '{"properties":{"description":"routes monitoring data to a Log Analytics - workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"1400ef23-0000-0800-0000-6257add70000\""}' + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"100088ee-0000-0800-0000-6279e94b0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -2199,7 +2215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:27:24 GMT expires: - '-1' pragma: @@ -2233,32 +2249,32 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -2270,7 +2286,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2288,11 +2304,11 @@ interactions: cache-control: - no-cache content-length: - - '4439' + - '4432' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:27:25 GMT expires: - '-1' pragma: @@ -2329,7 +2345,7 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: @@ -2343,7 +2359,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:16:41 GMT + - Tue, 10 May 2022 04:27:25 GMT expires: - '-1' pragma: @@ -2357,28 +2373,28 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14995' status: code: 200 message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestsigtj42rb-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitest3vhwjvofc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837"}]}, "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"}}, @@ -2393,38 +2409,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2453' + - '2446' Content-Type: - application/json ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n @@ -2432,7 +2448,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2442,21 +2458,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44222f20-8caa-4cbc-9fc9-69bd893bce51?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a20fd45-c1f0-480c-a4cc-142014a73a08?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3803' + - '3982' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:42 GMT + - Tue, 10 May 2022 04:27:28 GMT expires: - '-1' pragma: @@ -2472,7 +2490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -2490,23 +2508,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44222f20-8caa-4cbc-9fc9-69bd893bce51?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a20fd45-c1f0-480c-a4cc-142014a73a08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"202f2244-aa8c-bc4c-9fc9-69bd893bce51\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:43.59Z\"\n }" + string: "{\n \"name\": \"45fd204a-f0c1-0c48-a4cc-142014a73a08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.7866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:13 GMT + - Tue, 10 May 2022 04:27:58 GMT expires: - '-1' pragma: @@ -2538,23 +2556,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44222f20-8caa-4cbc-9fc9-69bd893bce51?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a20fd45-c1f0-480c-a4cc-142014a73a08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"202f2244-aa8c-bc4c-9fc9-69bd893bce51\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:43.59Z\"\n }" + string: "{\n \"name\": \"45fd204a-f0c1-0c48-a4cc-142014a73a08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.7866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:43 GMT + - Tue, 10 May 2022 04:28:28 GMT expires: - '-1' pragma: @@ -2586,24 +2604,24 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44222f20-8caa-4cbc-9fc9-69bd893bce51?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a20fd45-c1f0-480c-a4cc-142014a73a08?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"202f2244-aa8c-bc4c-9fc9-69bd893bce51\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:16:43.59Z\",\n \"endTime\": - \"2022-04-14T05:17:59.5991321Z\"\n }" + string: "{\n \"name\": \"45fd204a-f0c1-0c48-a4cc-142014a73a08\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:27:28.7866666Z\",\n \"endTime\": + \"2022-05-10T04:28:55.71215Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '168' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:13 GMT + - Tue, 10 May 2022 04:28:59 GMT expires: - '-1' pragma: @@ -2635,32 +2653,32 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsigtj42rb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsigtj42rb-8ecadf-16c3ca4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3vhwjvofc-8ecadf\",\n \"fqdn\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3vhwjvofc-8ecadf-0ffcc955.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n @@ -2668,7 +2686,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b3ac8f7d-7ef8-4fbf-9860-67157c732f33\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a02f782a-4b78-4b00-a34d-c823337dd837\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2686,11 +2704,11 @@ interactions: cache-control: - no-cache content-length: - - '3805' + - '3798' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:14 GMT + - Tue, 10 May 2022 04:28:59 GMT expires: - '-1' pragma: @@ -2724,26 +2742,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/43b85b46-fe2d-46ff-b412-2166408e631f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae1f69e3-520d-4651-956c-a3e6de2d2c2f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:18:14 GMT + - Tue, 10 May 2022 04:29:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/43b85b46-fe2d-46ff-b412-2166408e631f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ae1f69e3-520d-4651-956c-a3e6de2d2c2f?api-version=2016-03-30 pragma: - no-cache server: @@ -2753,7 +2771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml index a1cbd0a86f4..024c23be087 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:16: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","date":"2022-05-10T04:25:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:25:16 GMT expires: - '-1' pragma: @@ -59,7 +59,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstest000002_uai?api-version=2018-11-30 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:41 GMT + - Tue, 10 May 2022 04:25:17 GMT expires: - '-1' location: @@ -85,26 +85,28 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created - request: body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": - {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttyeil2aal-8ecadf", + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpkrcvsjup-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -115,39 +117,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1613' + - '1746' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -159,21 +161,24 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3151' + - '3330' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:44 GMT + - Tue, 10 May 2022 04:25:21 GMT expires: - '-1' pragma: @@ -185,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1194' status: code: 201 message: Created @@ -204,14 +209,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +225,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:14 GMT + - Tue, 10 May 2022 04:25:52 GMT expires: - '-1' pragma: @@ -253,14 +258,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +274,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:44 GMT + - Tue, 10 May 2022 04:26:22 GMT expires: - '-1' pragma: @@ -302,14 +307,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:15 GMT + - Tue, 10 May 2022 04:26:51 GMT expires: - '-1' pragma: @@ -351,14 +356,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +372,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:44 GMT + - Tue, 10 May 2022 04:27:22 GMT expires: - '-1' pragma: @@ -400,14 +405,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" headers: cache-control: - no-cache @@ -416,7 +421,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:14 GMT + - Tue, 10 May 2022 04:27:51 GMT expires: - '-1' pragma: @@ -449,15 +454,64 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0682378e-79be-47b8-be48-b10c9b4da80e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e378206-be79-b847-be48-b10c9b4da80e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:16:44.8166666Z\",\n \"endTime\": - \"2022-04-14T05:19:44.0674146Z\"\n }" + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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 --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c2e4ed0-33dd-4628-8adb-3243a6f1b6ec?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d04e2e6c-dd33-2846-8adb-3243a6f1b6ec\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:25:22.0766666Z\",\n \"endTime\": + \"2022-05-10T04:28:28.8937135Z\"\n }" headers: cache-control: - no-cache @@ -466,7 +520,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:45 GMT + - Tue, 10 May 2022 04:28:51 GMT expires: - '-1' pragma: @@ -499,39 +553,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --node-count --ssh-key-value --assign-identity User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -550,11 +604,11 @@ interactions: cache-control: - no-cache content-length: - - '3923' + - '3916' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:45 GMT + - Tue, 10 May 2022 04:28:52 GMT expires: - '-1' pragma: @@ -586,39 +640,39 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -637,11 +691,11 @@ interactions: cache-control: - no-cache content-length: - - '3923' + - '3916' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:46 GMT + - Tue, 10 May 2022 04:28:53 GMT expires: - '-1' pragma: @@ -673,12 +727,12 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-04-14T05:16:40Z","deletion_due_time":"1650172625","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-05-10T04:25:16Z","deletion_due_time":"1652416089","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -687,7 +741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:46 GMT + - Tue, 10 May 2022 04:28:53 GMT expires: - '-1' pragma: @@ -715,7 +769,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 response: @@ -727,7 +781,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:19:45 GMT + - Tue, 10 May 2022 04:28:54 GMT expires: - '-1' pragma: @@ -753,7 +807,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview response: @@ -761,19 +815,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:19:16 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:28:26 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -781,18 +837,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:46 GMT + - Tue, 10 May 2022 04:28:53 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -815,7 +872,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview response: @@ -823,19 +880,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:19:16 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:28:26 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -843,18 +902,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:46 GMT + - Tue, 10 May 2022 04:28:53 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -877,7 +937,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 response: @@ -989,7 +1049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:48 GMT + - Tue, 10 May 2022 04:28:55 GMT expires: - '-1' pragma: @@ -1017,7 +1077,7 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 response: @@ -1358,7 +1418,8 @@ interactions: Central","France South","South Africa North","South Africa West","UAE Central","UAE North","Switzerland North","Switzerland West","Germany North","Germany West Central","Norway East","Norway West","Jio India Central","Sweden South","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US 2 EUAP","Central US EUAP"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":["East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central US","South Central US","East US 2","Canada East","Canada Central","Central US","Australia East","Australia Southeast","Australia Central","Australia @@ -1368,7 +1429,7 @@ interactions: Central","France South","South Africa North","South Africa West","UAE Central","UAE North","Switzerland North","Switzerland West","Germany North","Germany West Central","Norway East","Norway West","Jio India Central","Sweden South","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2 EUAP","Central US EUAP"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2022-04-01","2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2022-04-01","2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2022-04-01","2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"metricbaselines","locations":["West Europe","North Europe"],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West @@ -1420,8 +1481,8 @@ interactions: Central","South Africa North","Switzerland North","Australia Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Brazil South","Jio India Central","Jio - India West","Sweden Central","South India","UAE Central","West US 3","Sweden - South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + India West","Sweden Central","South India","UAE Central","West US 3","West + India","Sweden South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West @@ -1431,7 +1492,8 @@ interactions: Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Central","West US 3","West India","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West @@ -1440,7 +1502,8 @@ interactions: Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + Central","West US 3","West India","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia Southeast","Canada Central","Japan East","Australia East","Central India","Germany West Central","North Central US","South Central US","East US","Central US","West @@ -1449,8 +1512,9 @@ interactions: Central","South Africa North","Switzerland North","Brazil South","Australia Central 2","Brazil Southeast","Canada East","France South","Korea South","Norway West","UAE North","Japan West","Norway East","Switzerland West","Jio India - Central","Jio India West","Sweden Central","Germany North","South India","UAE - Central","West US 3","Sweden South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Jio India West","Sweden Central","Germany North","South India","West + India","UAE Central","West US 3","Sweden South","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East US","West Central US","South Central US","North Europe","West Europe","Southeast Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia @@ -1461,11 +1525,11 @@ interactions: cache-control: - no-cache content-length: - - '47880' + - '48005' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:48 GMT + - Tue, 10 May 2022 04:28:55 GMT expires: - '-1' pragma: @@ -1509,12 +1573,12 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: - string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"1400a927-0000-0800-0000-6257aef50000\""}' + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"10003def-0000-0800-0000-6279ea080000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -1525,7 +1589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:49 GMT + - Tue, 10 May 2022 04:28:57 GMT expires: - '-1' pragma: @@ -1566,13 +1630,13 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: string: '{"properties":{"description":"routes monitoring data to a Log Analytics - workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"1400ac27-0000-0800-0000-6257aef70000\""}' + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"100044ef-0000-0800-0000-6279ea0a0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -1583,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:52 GMT + - Tue, 10 May 2022 04:28:58 GMT expires: - '-1' pragma: @@ -1608,15 +1672,15 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": - {}}}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": "cliakstest-clitesttyeil2aal-8ecadf", + {}}}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliakstest-clitestpkrcvsjup-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", "useAADAuth": "True"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": @@ -1625,7 +1689,7 @@ interactions: "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/ef8e22c6-5c84-4a52-af55-f559d5d90376"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6"}]}, "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"}}, @@ -1640,38 +1704,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2921' + - '2914' Content-Type: - application/json ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1681,7 +1745,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1691,22 +1755,25 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ce3669b-f6b4-40c1-9522-4b0a3e42d4de?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/339d42ad-78df-47c8-8df6-3374e200c3f5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4293' + - '4472' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:53 GMT + - Tue, 10 May 2022 04:29:00 GMT expires: - '-1' pragma: @@ -1722,7 +1789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1193' status: code: 200 message: OK @@ -1740,14 +1807,14 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ce3669b-f6b4-40c1-9522-4b0a3e42d4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/339d42ad-78df-47c8-8df6-3374e200c3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b66e30c-b4f6-c140-9522-4b0a3e42d4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:54.1466666Z\"\n }" + string: "{\n \"name\": \"ad429d33-df78-c847-8df6-3374e200c3f5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:01.2666666Z\"\n }" headers: cache-control: - no-cache @@ -1756,7 +1823,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:23 GMT + - Tue, 10 May 2022 04:29:31 GMT expires: - '-1' pragma: @@ -1788,14 +1855,14 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ce3669b-f6b4-40c1-9522-4b0a3e42d4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/339d42ad-78df-47c8-8df6-3374e200c3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b66e30c-b4f6-c140-9522-4b0a3e42d4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:54.1466666Z\"\n }" + string: "{\n \"name\": \"ad429d33-df78-c847-8df6-3374e200c3f5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:01.2666666Z\"\n }" headers: cache-control: - no-cache @@ -1804,7 +1871,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:54 GMT + - Tue, 10 May 2022 04:30:00 GMT expires: - '-1' pragma: @@ -1836,15 +1903,15 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ce3669b-f6b4-40c1-9522-4b0a3e42d4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/339d42ad-78df-47c8-8df6-3374e200c3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9b66e30c-b4f6-c140-9522-4b0a3e42d4de\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:19:54.1466666Z\",\n \"endTime\": - \"2022-04-14T05:21:18.8547593Z\"\n }" + string: "{\n \"name\": \"ad429d33-df78-c847-8df6-3374e200c3f5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:29:01.2666666Z\",\n \"endTime\": + \"2022-05-10T04:30:16.6675301Z\"\n }" headers: cache-control: - no-cache @@ -1853,7 +1920,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:23 GMT + - Tue, 10 May 2022 04:30:31 GMT expires: - '-1' pragma: @@ -1885,32 +1952,32 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1922,7 +1989,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1941,11 +2008,11 @@ interactions: cache-control: - no-cache content-length: - - '4652' + - '4645' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:23 GMT + - Tue, 10 May 2022 04:30:31 GMT expires: - '-1' pragma: @@ -1977,8 +2044,8 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -1995,7 +2062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:21:24 GMT + - Tue, 10 May 2022 04:30:31 GMT expires: - '-1' pragma: @@ -2034,15 +2101,15 @@ interactions: ParameterSetName: - -a --resource-group --name --enable-msi-auth-for-monitoring User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/e62e22ef-0c3d-4708-98c3-aa931264c65c?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/f94caf74-e6bb-43a3-861b-f694c2c26395?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T05:21:25.1655772Z","updatedOn":"2022-04-14T05:21:25.4781269Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/e62e22ef-0c3d-4708-98c3-aa931264c65c","type":"Microsoft.Authorization/roleAssignments","name":"e62e22ef-0c3d-4708-98c3-aa931264c65c"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:30:32.8097682Z","updatedOn":"2022-05-10T04:30:33.1066437Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/f94caf74-e6bb-43a3-861b-f694c2c26395","type":"Microsoft.Authorization/roleAssignments","name":"f94caf74-e6bb-43a3-861b-f694c2c26395"}' headers: cache-control: - no-cache @@ -2051,7 +2118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:21:26 GMT + - Tue, 10 May 2022 04:30:34 GMT expires: - '-1' pragma: @@ -2063,7 +2130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' status: code: 201 message: Created @@ -2081,12 +2148,12 @@ interactions: ParameterSetName: - --method --url User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: - string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"1400a927-0000-0800-0000-6257aef50000\""}' + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"10003def-0000-0800-0000-6279ea080000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -2097,7 +2164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:21:27 GMT + - Tue, 10 May 2022 04:30:35 GMT expires: - '-1' pragma: @@ -2131,13 +2198,13 @@ interactions: ParameterSetName: - --method --url User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: body: string: '{"properties":{"description":"routes monitoring data to a Log Analytics - workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"1400ac27-0000-0800-0000-6257aef70000\""}' + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"100044ef-0000-0800-0000-6279ea0a0000\""}' headers: api-supported-versions: - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview @@ -2148,7 +2215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:21:27 GMT + - Tue, 10 May 2022 04:30:36 GMT expires: - '-1' pragma: @@ -2182,32 +2249,32 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -2219,7 +2286,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2238,11 +2305,11 @@ interactions: cache-control: - no-cache content-length: - - '4652' + - '4645' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:27 GMT + - Tue, 10 May 2022 04:30:35 GMT expires: - '-1' pragma: @@ -2279,7 +2346,7 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) AZURECLI/2.36.0 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview response: @@ -2293,7 +2360,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:21:29 GMT + - Tue, 10 May 2022 04:30:36 GMT expires: - '-1' pragma: @@ -2307,29 +2374,29 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 200 message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": - {}}}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": "cliakstest-clitesttyeil2aal-8ecadf", + {}}}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliakstest-clitestpkrcvsjup-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6"}]}, "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"}}, @@ -2344,38 +2411,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2647' + - '2640' Content-Type: - application/json ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n @@ -2383,7 +2450,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2393,22 +2460,25 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f9e1787-e07e-43ae-88e9-671f6dff0469?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56c8eb44-06c6-4d51-a86b-773f3ee6f8da?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4016' + - '4195' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:30 GMT + - Tue, 10 May 2022 04:30:38 GMT expires: - '-1' pragma: @@ -2424,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -2442,23 +2512,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f9e1787-e07e-43ae-88e9-671f6dff0469?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56c8eb44-06c6-4d51-a86b-773f3ee6f8da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"87179e1f-7ee0-ae43-88e9-671f6dff0469\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:31.65Z\"\n }" + string: "{\n \"name\": \"44ebc856-c606-514d-a86b-773f3ee6f8da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:39.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:01 GMT + - Tue, 10 May 2022 04:31:09 GMT expires: - '-1' pragma: @@ -2490,23 +2560,23 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f9e1787-e07e-43ae-88e9-671f6dff0469?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56c8eb44-06c6-4d51-a86b-773f3ee6f8da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"87179e1f-7ee0-ae43-88e9-671f6dff0469\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:31.65Z\"\n }" + string: "{\n \"name\": \"44ebc856-c606-514d-a86b-773f3ee6f8da\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:39.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:31 GMT + - Tue, 10 May 2022 04:31:39 GMT expires: - '-1' pragma: @@ -2538,24 +2608,24 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f9e1787-e07e-43ae-88e9-671f6dff0469?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56c8eb44-06c6-4d51-a86b-773f3ee6f8da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"87179e1f-7ee0-ae43-88e9-671f6dff0469\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:21:31.65Z\",\n \"endTime\": - \"2022-04-14T05:22:47.5847123Z\"\n }" + string: "{\n \"name\": \"44ebc856-c606-514d-a86b-773f3ee6f8da\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:30:39.6Z\",\n \"endTime\": + \"2022-05-10T04:31:52.0128674Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:01 GMT + - Tue, 10 May 2022 04:32:09 GMT expires: - '-1' pragma: @@ -2587,32 +2657,32 @@ interactions: ParameterSetName: - -a -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttyeil2aal-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttyeil2aal-8ecadf-dcc92443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpkrcvsjup-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpkrcvsjup-8ecadf-532ba9f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n @@ -2620,7 +2690,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef8e22c6-5c84-4a52-af55-f559d5d90376\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a25eace6-27b9-4eaf-94fc-cce7e986f1a6\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2639,11 +2709,11 @@ interactions: cache-control: - no-cache content-length: - - '4018' + - '4011' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:02 GMT + - Tue, 10 May 2022 04:32:10 GMT expires: - '-1' pragma: @@ -2677,26 +2747,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cba6e5bb-b530-4beb-be6b-5139a6af44c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/daee8e04-d052-4284-a07e-d12307d5a6cd?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:23:02 GMT + - Tue, 10 May 2022 04:32:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cba6e5bb-b530-4beb-be6b-5139a6af44c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/daee8e04-d052-4284-a07e-d12307d5a6cd?api-version=2016-03-30 pragma: - no-cache server: @@ -2706,7 +2776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14991' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml index c1c72c38778..adfa9de4875 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:13:27Z"},"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","date":"2022-05-10T04:22:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:13:27 GMT + - Tue, 10 May 2022 04:22:42 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgswydyjgb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttfkg6xs5p-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_D2s_v3", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "availabilityZones": ["1", "2", "3"], "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": true, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,39 +68,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1455' + - '1588' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestgswydyjgb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgswydyjgb-8ecadf-999f21e9.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgswydyjgb-8ecadf-999f21e9.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttfkg6xs5p-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttfkg6xs5p-8ecadf-a6d00eae.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttfkg6xs5p-8ecadf-a6d00eae.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 \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 @@ -110,21 +112,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3120' + - '3299' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:33 GMT + - Tue, 10 May 2022 04:22:48 GMT expires: - '-1' pragma: @@ -136,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created @@ -154,23 +158,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:04 GMT + - Tue, 10 May 2022 04:23:18 GMT expires: - '-1' pragma: @@ -202,23 +206,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:33 GMT + - Tue, 10 May 2022 04:23:48 GMT expires: - '-1' pragma: @@ -250,23 +254,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:03 GMT + - Tue, 10 May 2022 04:24:19 GMT expires: - '-1' pragma: @@ -298,23 +302,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:34 GMT + - Tue, 10 May 2022 04:24:49 GMT expires: - '-1' pragma: @@ -346,23 +350,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:04 GMT + - Tue, 10 May 2022 04:25:19 GMT expires: - '-1' pragma: @@ -394,23 +398,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:34 GMT + - Tue, 10 May 2022 04:25:49 GMT expires: - '-1' pragma: @@ -442,23 +446,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:05 GMT + - Tue, 10 May 2022 04:26:19 GMT expires: - '-1' pragma: @@ -490,23 +494,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:34 GMT + - Tue, 10 May 2022 04:26:49 GMT expires: - '-1' pragma: @@ -538,23 +542,24 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/07b96163-5fac-45f2-9cb6-ab8999a8e614?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\"\n }" + string: "{\n \"name\": \"6361b907-ac5f-f245-9cb6-ab8999a8e614\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:22:48.15Z\",\n \"endTime\": + \"2022-05-10T04:27:07.6657423Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:04 GMT + - Tue, 10 May 2022 04:27:19 GMT expires: - '-1' pragma: @@ -586,89 +591,40 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/f6f0795f-3d60-46ff-9efb-914f1efecbe2?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"5f79f0f6-603d-ff46-9efb-914f1efecbe2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:13:33.6866666Z\",\n \"endTime\": - \"2022-04-14T05:18:31.126697Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '169' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:18: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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestgswydyjgb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgswydyjgb-8ecadf-999f21e9.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgswydyjgb-8ecadf-999f21e9.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitesttfkg6xs5p-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttfkg6xs5p-8ecadf-a6d00eae.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttfkg6xs5p-8ecadf-a6d00eae.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 \"workloadRuntime\": \"OCIContainer\",\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 \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/07146c1d-8d7d-4c4b-ae2a-e2536ea8ac53\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/13fbbed5-a310-457e-bd85-dd890d8ccadf\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -678,19 +634,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3771' + - '3950' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:36 GMT + - Tue, 10 May 2022 04:27:20 GMT expires: - '-1' pragma: @@ -724,26 +682,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/def592dc-4df7-4869-9afa-886a2fafe22d?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/21cd3246-14e6-44b3-8a73-bd4160968887?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:18:36 GMT + - Tue, 10 May 2022 04:27:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/def592dc-4df7-4869-9afa-886a2fafe22d?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/21cd3246-14e6-44b3-8a73-bd4160968887?api-version=2017-08-31 pragma: - no-cache server: @@ -753,7 +711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml index 351657b1a54..d9cce73252e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:13:20Z"},"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","date":"2022-05-10T04:23:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:13:21 GMT + - Tue, 10 May 2022 04:23:00 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestn5kzl4iso-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4pathbnwp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestn5kzl4iso-8ecadf\",\n \"fqdn\": \"cliakstest-clitestn5kzl4iso-8ecadf-ee4eb554.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestn5kzl4iso-8ecadf-ee4eb554.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest4pathbnwp-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4pathbnwp-8ecadf-c8660c0b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4pathbnwp-8ecadf-c8660c0b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:24 GMT + - Tue, 10 May 2022 04:23:03 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1194' status: code: 201 message: Created @@ -153,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +173,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:13:53 GMT + - Tue, 10 May 2022 04:23:34 GMT expires: - '-1' pragma: @@ -201,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:23 GMT + - Tue, 10 May 2022 04:24:03 GMT expires: - '-1' pragma: @@ -249,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:54 GMT + - Tue, 10 May 2022 04:24:33 GMT expires: - '-1' pragma: @@ -297,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:24 GMT + - Tue, 10 May 2022 04:25:03 GMT expires: - '-1' pragma: @@ -345,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:53 GMT + - Tue, 10 May 2022 04:25:34 GMT expires: - '-1' pragma: @@ -393,15 +397,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c5fee60-da1c-4a08-b068-379a26efd8de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"60ee5f0c-1cda-084a-b068-379a26efd8de\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:13:24.11Z\",\n \"endTime\": - \"2022-04-14T05:16:10.8565426Z\"\n }" + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:26:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce79facc-8dd4-4075-ae3c-5e9511b0e73a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ccfa79ce-d48d-7540-ae3c-5e9511b0e73a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:23:03.94Z\",\n \"endTime\": + \"2022-05-10T04:26:19.7047051Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +462,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:23 GMT + - Tue, 10 May 2022 04:26:34 GMT expires: - '-1' pragma: @@ -442,39 +494,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestn5kzl4iso-8ecadf\",\n \"fqdn\": \"cliakstest-clitestn5kzl4iso-8ecadf-ee4eb554.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestn5kzl4iso-8ecadf-ee4eb554.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitest4pathbnwp-8ecadf\",\n \"fqdn\": \"cliakstest-clitest4pathbnwp-8ecadf-c8660c0b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4pathbnwp-8ecadf-c8660c0b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/29cd41e1-8533-40cc-949c-2129c3bd2e83\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/405b17c5-7f71-4869-954d-6cc72342fe30\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +544,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:24 GMT + - Tue, 10 May 2022 04:26:34 GMT expires: - '-1' pragma: @@ -528,10 +580,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --weekday --start-hour User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2022-04-02-preview response: body: string: "{\n \"value\": []\n }" @@ -543,7 +595,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:24 GMT + - Tue, 10 May 2022 04:26:35 GMT expires: - '-1' pragma: @@ -580,10 +632,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --weekday --start-hour User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations/default?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -598,7 +650,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:25 GMT + - Tue, 10 May 2022 04:26:35 GMT expires: - '-1' pragma: @@ -614,7 +666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -632,10 +684,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --config-file User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -650,7 +702,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:25 GMT + - Tue, 10 May 2022 04:26:36 GMT expires: - '-1' pragma: @@ -689,10 +741,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --config-file User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations/default?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -711,7 +763,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:25 GMT + - Tue, 10 May 2022 04:26:36 GMT expires: - '-1' pragma: @@ -727,7 +779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1199' status: code: 200 message: OK @@ -745,10 +797,10 @@ interactions: ParameterSetName: - -g --cluster-name -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations/default?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -767,7 +819,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:26 GMT + - Tue, 10 May 2022 04:26:36 GMT expires: - '-1' pragma: @@ -801,10 +853,10 @@ interactions: ParameterSetName: - -g --cluster-name -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/maintenanceConfigurations/default?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2022-04-02-preview response: body: string: '' @@ -814,7 +866,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:16:26 GMT + - Tue, 10 May 2022 04:26:37 GMT expires: - '-1' pragma: @@ -826,7 +878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -844,10 +896,10 @@ interactions: ParameterSetName: - -g --cluster-name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/maintenanceConfigurations?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2022-04-02-preview response: body: string: "{\n \"value\": []\n }" @@ -859,7 +911,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:26 GMT + - Tue, 10 May 2022 04:26:37 GMT expires: - '-1' pragma: @@ -893,26 +945,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/205ed6b0-0021-4b7d-9d23-aaf9539814e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9aa5c10f-e17c-4cc3-94cd-f49eab2295f6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:16:27 GMT + - Tue, 10 May 2022 04:26:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/205ed6b0-0021-4b7d-9d23-aaf9539814e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9aa5c10f-e17c-4cc3-94cd-f49eab2295f6?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml index 4ba1c9210bd..5be99888c9c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:14:15Z"},"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","date":"2022-05-10T04:29:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:14:15 GMT + - Tue, 10 May 2022 04:29:59 GMT expires: - '-1' pragma: @@ -43,18 +43,20 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitests3hhw3qt5-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestophy3nlgs-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -65,38 +67,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1416' + - '1549' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitests3hhw3qt5-8ecadf\",\n \"fqdn\": \"cliakstest-clitests3hhw3qt5-8ecadf-184e7538.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitests3hhw3qt5-8ecadf-184e7538.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestophy3nlgs-8ecadf\",\n \"fqdn\": \"cliakstest-clitestophy3nlgs-8ecadf-88da59d5.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestophy3nlgs-8ecadf-88da59d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3051' + - '3230' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:22 GMT + - Tue, 10 May 2022 04:30:06 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 201 message: Created @@ -152,23 +156,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:14:51 GMT + - Tue, 10 May 2022 04:30:43 GMT expires: - '-1' pragma: @@ -200,23 +204,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:21 GMT + - Tue, 10 May 2022 04:31:12 GMT expires: - '-1' pragma: @@ -248,23 +252,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:15:52 GMT + - Tue, 10 May 2022 04:31:43 GMT expires: - '-1' pragma: @@ -296,23 +300,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:22 GMT + - Tue, 10 May 2022 04:32:13 GMT expires: - '-1' pragma: @@ -344,23 +348,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:52 GMT + - Tue, 10 May 2022 04:32:43 GMT expires: - '-1' pragma: @@ -392,24 +396,120 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/621e3e33-c9b2-4c25-baef-438b811bdf4c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"333e1e62-b2c9-254c-baef-438b811bdf4c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:14:21.7166666Z\",\n \"endTime\": - \"2022-04-14T05:16:54.4180045Z\"\n }" + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '120' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:33: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 --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/9c636a2d-314f-4188-b758-72a69fe7e1bd?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"2d6a639c-4f31-8841-b758-72a69fe7e1bd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:30:06.4Z\",\n \"endTime\": + \"2022-05-10T04:33:59.1411507Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:23 GMT + - Tue, 10 May 2022 04:34:13 GMT expires: - '-1' pragma: @@ -441,39 +541,39 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview 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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitests3hhw3qt5-8ecadf\",\n \"fqdn\": \"cliakstest-clitests3hhw3qt5-8ecadf-184e7538.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitests3hhw3qt5-8ecadf-184e7538.portal.hcp.eastus.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestophy3nlgs-8ecadf\",\n \"fqdn\": \"cliakstest-clitestophy3nlgs-8ecadf-88da59d5.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestophy3nlgs-8ecadf-88da59d5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_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 \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0ded4d94-77d0-4c0e-866f-b46dd70ee855\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1b353f52-9027-40b5-a35e-2f42270edb8b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -483,19 +583,21 @@ interactions: \"/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 \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3702' + - '3881' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:23 GMT + - Tue, 10 May 2022 04:34:14 GMT expires: - '-1' pragma: @@ -528,10 +630,10 @@ interactions: - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers --node-vm-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -541,20 +643,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1006' + - '999' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:24 GMT + - Tue, 10 May 2022 04:34:16 GMT expires: - '-1' pragma: @@ -598,10 +700,10 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -611,22 +713,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"gpuInstanceProfile\": \"MIG3g\",\n \"osType\": \"Linux\",\n - \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2022.03.29\",\n + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2022.04.27\",\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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 cache-control: - no-cache content-length: - - '990' + - '983' content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:26 GMT + - Tue, 10 May 2022 04:34:19 GMT expires: - '-1' pragma: @@ -638,7 +740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1193' status: code: 201 message: Created @@ -659,14 +761,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +777,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:56 GMT + - Tue, 10 May 2022 04:34:49 GMT expires: - '-1' pragma: @@ -710,14 +812,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -726,7 +828,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:26 GMT + - Tue, 10 May 2022 04:35:19 GMT expires: - '-1' pragma: @@ -761,14 +863,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -777,7 +879,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:58 GMT + - Tue, 10 May 2022 04:35:50 GMT expires: - '-1' pragma: @@ -812,14 +914,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -828,7 +930,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:27 GMT + - Tue, 10 May 2022 04:36:19 GMT expires: - '-1' pragma: @@ -863,14 +965,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -879,7 +981,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:57 GMT + - Tue, 10 May 2022 04:36:50 GMT expires: - '-1' pragma: @@ -914,14 +1016,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -930,7 +1032,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:27 GMT + - Tue, 10 May 2022 04:37:20 GMT expires: - '-1' pragma: @@ -965,14 +1067,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -981,7 +1083,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:59 GMT + - Tue, 10 May 2022 04:37:50 GMT expires: - '-1' pragma: @@ -1016,14 +1118,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1032,7 +1134,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:29 GMT + - Tue, 10 May 2022 04:38:20 GMT expires: - '-1' pragma: @@ -1067,14 +1169,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1083,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:59 GMT + - Tue, 10 May 2022 04:38:51 GMT expires: - '-1' pragma: @@ -1118,14 +1220,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1134,7 +1236,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:29 GMT + - Tue, 10 May 2022 04:39:20 GMT expires: - '-1' pragma: @@ -1169,14 +1271,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1185,7 +1287,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:59 GMT + - Tue, 10 May 2022 04:39:50 GMT expires: - '-1' pragma: @@ -1220,14 +1322,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1236,7 +1338,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:30 GMT + - Tue, 10 May 2022 04:40:21 GMT expires: - '-1' pragma: @@ -1271,14 +1373,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1287,7 +1389,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:00 GMT + - Tue, 10 May 2022 04:40:51 GMT expires: - '-1' pragma: @@ -1322,14 +1424,14 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\"\n }" headers: cache-control: - no-cache @@ -1338,7 +1440,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:30 GMT + - Tue, 10 May 2022 04:41:22 GMT expires: - '-1' pragma: @@ -1373,15 +1475,15 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7df3b63c-3247-439a-b886-ebdd4aabd4d5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/04234429-e292-4602-8ba5-3e384264e521?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"3cb6f37d-4732-9a43-b886-ebdd4aabd4d5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:17:27.4133333Z\",\n \"endTime\": - \"2022-04-14T05:24:32.2004198Z\"\n }" + string: "{\n \"name\": \"29442304-92e2-0246-8ba5-3e384264e521\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:34:19.5633333Z\",\n \"endTime\": + \"2022-05-10T04:41:47.1110551Z\"\n }" headers: cache-control: - no-cache @@ -1390,7 +1492,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:00 GMT + - Tue, 10 May 2022 04:41:52 GMT expires: - '-1' pragma: @@ -1425,10 +1527,10 @@ interactions: UseGPUDedicatedVHD: - 'true' User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1438,20 +1540,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"gpuInstanceProfile\": \"MIG3g\",\n \"osType\": \"Linux\",\n - \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2022.03.29\",\n + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2022.04.27\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '991' + - '984' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:00 GMT + - Tue, 10 May 2022 04:41:52 GMT expires: - '-1' pragma: @@ -1485,26 +1587,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/145443e3-e183-45cb-be2b-d6eef437cc87?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/1bd4a181-06e6-4944-8359-f822efa8835e?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:25:02 GMT + - Tue, 10 May 2022 04:41:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/145443e3-e183-45cb-be2b-d6eef437cc87?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/1bd4a181-06e6-4944-8359-f822efa8835e?api-version=2017-08-31 pragma: - no-cache server: @@ -1514,7 +1616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14990' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml index 1ba3cccd58a..90aa3304ef9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:18:15Z"},"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","date":"2022-05-10T04:25:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:18:15 GMT + - Tue, 10 May 2022 04:25:04 GMT expires: - '-1' pragma: @@ -43,18 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7ar2ml73p-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpze24kiql-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -65,38 +67,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1417' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7ar2ml73p-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7ar2ml73p-8ecadf-653fc320.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7ar2ml73p-8ecadf-653fc320.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpze24kiql-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpze24kiql-8ecadf-1712dfb9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpze24kiql-8ecadf-1712dfb9.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3055' + - '3234' content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:18 GMT + - Tue, 10 May 2022 04:25:08 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' status: code: 201 message: Created @@ -152,14 +156,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +172,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:48 GMT + - Tue, 10 May 2022 04:25:37 GMT expires: - '-1' pragma: @@ -200,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +220,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:18 GMT + - Tue, 10 May 2022 04:26:07 GMT expires: - '-1' pragma: @@ -248,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:48 GMT + - Tue, 10 May 2022 04:26:37 GMT expires: - '-1' pragma: @@ -296,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:19 GMT + - Tue, 10 May 2022 04:27:07 GMT expires: - '-1' pragma: @@ -344,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:49 GMT + - Tue, 10 May 2022 04:27:38 GMT expires: - '-1' pragma: @@ -392,24 +396,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1b6f51c-541c-41d7-8a17-2ed6356b1f15?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cf5b6f1-1c54-d741-8a17-2ed6356b1f15\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:18:18.99Z\",\n \"endTime\": - \"2022-04-14T05:21:06.339285Z\"\n }" + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:19 GMT + - Tue, 10 May 2022 04:28:08 GMT expires: - '-1' pragma: @@ -441,39 +444,88 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7973ecf0-d0a1-4fd1-a788-4c7f3621b3c2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f0ec7379-a1d0-d14f-a788-4c7f3621b3c2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:25:07.97Z\",\n \"endTime\": + \"2022-05-10T04:28:34.5910324Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:28:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7ar2ml73p-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7ar2ml73p-8ecadf-653fc320.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7ar2ml73p-8ecadf-653fc320.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestpze24kiql-8ecadf\",\n \"fqdn\": \"cliakstest-clitestpze24kiql-8ecadf-1712dfb9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpze24kiql-8ecadf-1712dfb9.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/66d584a1-4e3d-428d-bb88-bdad29ce233f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f60c107d-e80b-4491-a4fb-f336d906d69d\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -491,11 +543,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:19 GMT + - Tue, 10 May 2022 04:28:38 GMT expires: - '-1' pragma: @@ -527,10 +579,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -540,20 +592,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1006' + - '999' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:19 GMT + - Tue, 10 May 2022 04:28:39 GMT expires: - '-1' pragma: @@ -594,10 +646,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -607,22 +659,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2022.03.29\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSCBLMariner-V1-2022.04.19\",\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/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '939' + - '932' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:22 GMT + - Tue, 10 May 2022 04:28:42 GMT expires: - '-1' pragma: @@ -634,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' status: code: 201 message: Created @@ -652,23 +704,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:51 GMT + - Tue, 10 May 2022 04:29:12 GMT expires: - '-1' pragma: @@ -700,23 +752,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:22 GMT + - Tue, 10 May 2022 04:29:42 GMT expires: - '-1' pragma: @@ -748,23 +800,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:52 GMT + - Tue, 10 May 2022 04:30:12 GMT expires: - '-1' pragma: @@ -796,23 +848,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:22 GMT + - Tue, 10 May 2022 04:30:42 GMT expires: - '-1' pragma: @@ -844,23 +896,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:52 GMT + - Tue, 10 May 2022 04:31:13 GMT expires: - '-1' pragma: @@ -892,23 +944,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:31:42 GMT expires: - '-1' pragma: @@ -940,23 +992,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:52 GMT + - Tue, 10 May 2022 04:32:12 GMT expires: - '-1' pragma: @@ -988,24 +1040,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234d4616-75d4-446f-8564-94b836fc1baa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3055a6e-2494-4d42-8fe8-8274fcfdec4a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"16464d23-d475-6f44-8564-94b836fc1baa\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:21:22.6333333Z\",\n \"endTime\": - \"2022-04-14T05:25:21.2917477Z\"\n }" + string: "{\n \"name\": \"6e5a05c3-9424-424d-8fe8-8274fcfdec4a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:28:42.64Z\",\n \"endTime\": + \"2022-05-10T04:32:15.2776578Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:22 GMT + - Tue, 10 May 2022 04:32:43 GMT expires: - '-1' pragma: @@ -1037,10 +1089,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1050,20 +1102,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2022.03.29\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSCBLMariner-V1-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '940' + - '933' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:23 GMT + - Tue, 10 May 2022 04:32:43 GMT expires: - '-1' pragma: @@ -1097,26 +1149,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6aadea10-6d99-4100-b13e-4755ef3b1fd7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e65a741-69bd-4e17-82d0-fc9887500194?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:25:24 GMT + - Tue, 10 May 2022 04:32:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6aadea10-6d99-4100-b13e-4755ef3b1fd7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9e65a741-69bd-4e17-82d0-fc9887500194?api-version=2016-03-30 pragma: - no-cache server: @@ -1126,7 +1178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14989' + - '14994' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml index a8a99c70a5b..9adaf90cdf1 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:16:36Z"},"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","date":"2022-05-10T04:25:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:36 GMT + - Tue, 10 May 2022 04:25:35 GMT expires: - '-1' pragma: @@ -43,18 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestidqn4zxko-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrgppsdweu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -65,38 +67,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1417' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestidqn4zxko-8ecadf\",\n \"fqdn\": \"cliakstest-clitestidqn4zxko-8ecadf-8cecdbc6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestidqn4zxko-8ecadf-8cecdbc6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestrgppsdweu-8ecadf\",\n \"fqdn\": \"cliakstest-clitestrgppsdweu-8ecadf-d14c322b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrgppsdweu-8ecadf-d14c322b.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3055' + - '3234' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:39 GMT + - Tue, 10 May 2022 04:25:40 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' status: code: 201 message: Created @@ -152,14 +156,110 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:26: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 --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:26: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 --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:10 GMT + - Tue, 10 May 2022 04:27:10 GMT expires: - '-1' pragma: @@ -200,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:39 GMT + - Tue, 10 May 2022 04:27:40 GMT expires: - '-1' pragma: @@ -248,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:09 GMT + - Tue, 10 May 2022 04:28:10 GMT expires: - '-1' pragma: @@ -296,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +412,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:39 GMT + - Tue, 10 May 2022 04:28:40 GMT expires: - '-1' pragma: @@ -344,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +460,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:09 GMT + - Tue, 10 May 2022 04:29:10 GMT expires: - '-1' pragma: @@ -392,15 +492,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed91882-d014-4233-a67a-af0a28268e0e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14e539fa-f31c-4ba7-9d51-2194dbdf757d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8218d94e-14d0-3342-a67a-af0a28268e0e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:16:39.9566666Z\",\n \"endTime\": - \"2022-04-14T05:19:37.0242746Z\"\n }" + string: "{\n \"name\": \"fa39e514-1cf3-a74b-9d51-2194dbdf757d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:25:40.1866666Z\",\n \"endTime\": + \"2022-05-10T04:29:29.9413696Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:40 GMT + - Tue, 10 May 2022 04:29:40 GMT expires: - '-1' pragma: @@ -441,39 +541,39 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestidqn4zxko-8ecadf\",\n \"fqdn\": \"cliakstest-clitestidqn4zxko-8ecadf-8cecdbc6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestidqn4zxko-8ecadf-8cecdbc6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestrgppsdweu-8ecadf\",\n \"fqdn\": \"cliakstest-clitestrgppsdweu-8ecadf-d14c322b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrgppsdweu-8ecadf-d14c322b.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/170769be-da16-4f31-9ed9-c0b1a50c350b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7cdf66e-0e32-4bb4-94b1-2c93d92a40bc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -491,11 +591,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:40 GMT + - Tue, 10 May 2022 04:29:40 GMT expires: - '-1' pragma: @@ -527,10 +627,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -540,20 +640,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1006' + - '999' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:40 GMT + - Tue, 10 May 2022 04:29:41 GMT expires: - '-1' pragma: @@ -593,10 +693,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -605,22 +705,22 @@ interactions: \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"WasmWasi\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 cache-control: - no-cache content-length: - - '943' + - '936' content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:43 GMT + - Tue, 10 May 2022 04:29:44 GMT expires: - '-1' pragma: @@ -632,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1191' status: code: 201 message: Created @@ -650,14 +750,62 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:30:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --workload-runtime + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -666,7 +814,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:13 GMT + - Tue, 10 May 2022 04:30:45 GMT expires: - '-1' pragma: @@ -698,14 +846,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -714,7 +862,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:43 GMT + - Tue, 10 May 2022 04:31:14 GMT expires: - '-1' pragma: @@ -746,14 +894,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -762,7 +910,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:13 GMT + - Tue, 10 May 2022 04:31:44 GMT expires: - '-1' pragma: @@ -794,14 +942,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -810,7 +958,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:44 GMT + - Tue, 10 May 2022 04:32:14 GMT expires: - '-1' pragma: @@ -842,14 +990,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -858,7 +1006,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:14 GMT + - Tue, 10 May 2022 04:32:44 GMT expires: - '-1' pragma: @@ -890,14 +1038,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\"\n }" headers: cache-control: - no-cache @@ -906,7 +1054,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:44 GMT + - Tue, 10 May 2022 04:33:15 GMT expires: - '-1' pragma: @@ -938,15 +1086,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48a94536-c006-4642-842c-a86f2a4159fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e82f78ba-6363-4dd6-860c-8e22c9084382?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3645a948-06c0-4246-842c-a86f2a4159fa\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:19:43.8666666Z\",\n \"endTime\": - \"2022-04-14T05:23:14.3290103Z\"\n }" + string: "{\n \"name\": \"ba782fe8-6363-d64d-860c-8e22c9084382\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:29:44.9733333Z\",\n \"endTime\": + \"2022-05-10T04:33:43.5604276Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +1103,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:14 GMT + - Tue, 10 May 2022 04:33:45 GMT expires: - '-1' pragma: @@ -987,10 +1135,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -999,20 +1147,20 @@ interactions: \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"WasmWasi\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '944' + - '937' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:14 GMT + - Tue, 10 May 2022 04:33:45 GMT expires: - '-1' pragma: @@ -1046,26 +1194,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d919431f-8bf0-481a-95d5-5b1e82260cfa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae867138-6311-4f4b-b92e-bb882fbd7775?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:23:16 GMT + - Tue, 10 May 2022 04:33:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d919431f-8bf0-481a-95d5-5b1e82260cfa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ae867138-6311-4f4b-b92e-bb882fbd7775?api-version=2016-03-30 pragma: - no-cache server: @@ -1075,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14991' + - '14992' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml index 3e11b7a28d2..f5a6959b1ef 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 - (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-28T05:49:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:29:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Apr 2022 05:49:34 GMT + - Tue, 10 May 2022 04:29:01 GMT expires: - '-1' pragma: @@ -43,19 +42,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnbgu5rpev-26fe00", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnxsoeh2jh-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "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, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,67 +67,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1746' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"eastus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestnbgu5rpev-26fe00\",\n\ - \ \"fqdn\": \"cliakstest-clitestnbgu5rpev-26fe00-164f90b3.hcp.eastus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestnbgu5rpev-26fe00-164f90b3.portal.hcp.eastus2.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ - : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\"\ - : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnxsoeh2jh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnxsoeh2jh-8ecadf-0689dc49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnxsoeh2jh-8ecadf-0689dc49.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD + azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3384' + - '3234' content-type: - application/json date: - - Thu, 28 Apr 2022 05:49:42 GMT + - Tue, 10 May 2022 04:29:05 GMT expires: - '-1' pragma: @@ -138,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -156,14 +156,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -172,7 +172,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:50:12 GMT + - Tue, 10 May 2022 04:29:35 GMT expires: - '-1' pragma: @@ -204,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +220,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:50:42 GMT + - Tue, 10 May 2022 04:30:06 GMT expires: - '-1' pragma: @@ -252,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:51:12 GMT + - Tue, 10 May 2022 04:30:35 GMT expires: - '-1' pragma: @@ -300,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:51:42 GMT + - Tue, 10 May 2022 04:31:05 GMT expires: - '-1' pragma: @@ -348,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:52:12 GMT + - Tue, 10 May 2022 04:31:35 GMT expires: - '-1' pragma: @@ -396,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +412,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:52:43 GMT + - Tue, 10 May 2022 04:32:05 GMT expires: - '-1' pragma: @@ -444,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\"\n }" headers: cache-control: - no-cache @@ -460,7 +460,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:53:13 GMT + - Tue, 10 May 2022 04:32:35 GMT expires: - '-1' pragma: @@ -492,15 +492,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4f221979-189f-4d07-b739-f079e2c6bd63?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/317c1823-3713-40e6-9866-2eb9e667c906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7919224f-9f18-074d-b739-f079e2c6bd63\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-28T05:49:41.6633333Z\",\n \"\ - endTime\": \"2022-04-28T05:53:38.8234152Z\"\n }" + string: "{\n \"name\": \"23187c31-1337-e640-9866-2eb9e667c906\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:29:05.7066666Z\",\n \"endTime\": + \"2022-05-10T04:32:42.6497693Z\"\n }" headers: cache-control: - no-cache @@ -509,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:53:43 GMT + - Tue, 10 May 2022 04:33:06 GMT expires: - '-1' pragma: @@ -541,65 +541,61 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"eastus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestnbgu5rpev-26fe00\",\n\ - \ \"fqdn\": \"cliakstest-clitestnbgu5rpev-26fe00-164f90b3.hcp.eastus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestnbgu5rpev-26fe00-164f90b3.portal.hcp.eastus2.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus2/providers/Microsoft.Network/publicIPAddresses/3a5503f5-b0d7-4c2d-8fdd-43e4cb04ec86\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ - : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"\ - enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\ - ,\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnxsoeh2jh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestnxsoeh2jh-8ecadf-0689dc49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnxsoeh2jh-8ecadf-0689dc49.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD + azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c5cf0aa-e7f9-4a89-a474-c3d366d72a21\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4037' + - '3701' content-type: - application/json date: - - Thu, 28 Apr 2022 05:53:43 GMT + - Tue, 10 May 2022 04:33:06 GMT expires: - '-1' pragma: @@ -631,34 +627,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview 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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1006' + - '999' content-type: - application/json date: - - Thu, 28 Apr 2022 05:53:45 GMT + - Tue, 10 May 2022 04:33:07 GMT expires: - '-1' pragma: @@ -698,35 +693,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview 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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.05\"\ - ,\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '947' + - '940' content-type: - application/json date: - - Thu, 28 Apr 2022 05:53:50 GMT + - Tue, 10 May 2022 04:33:10 GMT expires: - '-1' pragma: @@ -738,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -756,14 +751,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" headers: cache-control: - no-cache @@ -772,7 +767,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:54:19 GMT + - Tue, 10 May 2022 04:33:40 GMT expires: - '-1' pragma: @@ -804,14 +799,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" headers: cache-control: - no-cache @@ -820,7 +815,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:54:50 GMT + - Tue, 10 May 2022 04:34:10 GMT expires: - '-1' pragma: @@ -852,14 +847,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" headers: cache-control: - no-cache @@ -868,7 +863,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:55:20 GMT + - Tue, 10 May 2022 04:34:41 GMT expires: - '-1' pragma: @@ -900,14 +895,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" headers: cache-control: - no-cache @@ -916,7 +911,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:55:50 GMT + - Tue, 10 May 2022 04:35:10 GMT expires: - '-1' pragma: @@ -948,14 +943,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" headers: cache-control: - no-cache @@ -964,7 +959,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:56:21 GMT + - Tue, 10 May 2022 04:35:41 GMT expires: - '-1' pragma: @@ -996,15 +991,111 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/a1922e4a-ed76-4948-af2c-314418db4764?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a2e92a1-76ed-4849-af2c-314418db4764\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-28T05:53:50.34Z\",\n \"endTime\"\ - : \"2022-04-28T05:56:41.2426782Z\"\n }" + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:36: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 -c --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:36: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 -c --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/734f8654-3a5a-4148-8664-548dc8c6f9bd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"54864f73-5a3a-4841-8664-548dc8c6f9bd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:33:10.96Z\",\n \"endTime\": + \"2022-05-10T04:36:41.6307549Z\"\n }" headers: cache-control: - no-cache @@ -1013,7 +1104,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:56:51 GMT + - Tue, 10 May 2022 04:37:10 GMT expires: - '-1' pragma: @@ -1045,33 +1136,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview 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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.05\"\ - ,\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '948' + - '941' content-type: - application/json date: - - Thu, 28 Apr 2022 05:56:51 GMT + - Tue, 10 May 2022 04:37:11 GMT expires: - '-1' pragma: @@ -1103,46 +1194,45 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview 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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n\ - \ }\n },\n {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n },\n {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '2017' + - '2003' content-type: - application/json date: - - Thu, 28 Apr 2022 05:56:52 GMT + - Tue, 10 May 2022 04:37:12 GMT expires: - '-1' pragma: @@ -1182,35 +1272,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/c000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.05\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '947' + - '940' content-type: - application/json date: - - Thu, 28 Apr 2022 05:56:55 GMT + - Tue, 10 May 2022 04:37:14 GMT expires: - '-1' pragma: @@ -1222,7 +1312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' status: code: 201 message: Created @@ -1240,14 +1330,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1256,7 +1346,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:57:25 GMT + - Tue, 10 May 2022 04:37:44 GMT expires: - '-1' pragma: @@ -1288,14 +1378,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1304,7 +1394,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:57:55 GMT + - Tue, 10 May 2022 04:38:15 GMT expires: - '-1' pragma: @@ -1336,14 +1426,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1352,7 +1442,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:58:26 GMT + - Tue, 10 May 2022 04:38:45 GMT expires: - '-1' pragma: @@ -1384,14 +1474,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1400,7 +1490,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:58:57 GMT + - Tue, 10 May 2022 04:39:15 GMT expires: - '-1' pragma: @@ -1432,14 +1522,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1448,7 +1538,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:59:27 GMT + - Tue, 10 May 2022 04:39:45 GMT expires: - '-1' pragma: @@ -1480,14 +1570,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache @@ -1496,7 +1586,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Apr 2022 05:59:57 GMT + - Tue, 10 May 2022 04:40:15 GMT expires: - '-1' pragma: @@ -1528,24 +1618,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/cc5c4b53-c0ba-46ba-a913-a98b72dc74e5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"534b5ccc-bac0-ba46-a913-a98b72dc74e5\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-28T05:56:55.94Z\",\n \"endTime\"\ - : \"2022-04-28T06:00:23.878344Z\"\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '121' content-type: - application/json date: - - Thu, 28 Apr 2022 06:00:28 GMT + - Tue, 10 May 2022 04:40:45 GMT expires: - '-1' pragma: @@ -1577,33 +1666,82 @@ interactions: ParameterSetName: - --resource-group --cluster-name -c --name User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/c000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28e216e4-f721-414e-b50a-f74690ccb4ca?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.05\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"e416e228-21f7-4e41-b50a-f74690ccb4ca\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:37:15.62Z\",\n \"endTime\": + \"2022-05-10T04:40:46.3687628Z\"\n }" headers: cache-control: - no-cache content-length: - - '948' + - '165' content-type: - application/json date: - - Thu, 28 Apr 2022 06:00:28 GMT + - Tue, 10 May 2022 04: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -c --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/c000005?api-version=2022-04-02-preview + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '941' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:41:16 GMT expires: - '-1' pragma: @@ -1635,58 +1773,57 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget --no-wait User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview 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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n\ - \ }\n },\n {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"upgradeSettings\":\ - \ {},\n \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n + \ {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '3028' + - '3007' content-type: - application/json date: - - Thu, 28 Apr 2022 06:00:30 GMT + - Tue, 10 May 2022 04:41:16 GMT expires: - '-1' pragma: @@ -1720,26 +1857,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget --no-wait User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/agentPools/c000005?api-version=2022-03-02-preview&ignore-pod-disruption-budget=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2022-04-02-preview&ignore-pod-disruption-budget=true response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/69103a98-fd25-47ed-a98a-b2c3df27ec17?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4edc2901-2fb3-4f7d-9af2-25effc87a007?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Apr 2022 06:00:30 GMT + - Tue, 10 May 2022 04:41:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operationresults/69103a98-fd25-47ed-a98a-b2c3df27ec17?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4edc2901-2fb3-4f7d-9af2-25effc87a007?api-version=2016-03-30 pragma: - no-cache server: @@ -1749,7 +1886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -1767,58 +1904,57 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview 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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n\ - \ }\n },\n {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"upgradeSettings\":\ - \ {},\n \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Deleting\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\"\ - : \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.05\",\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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Deleting\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n + \ {\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\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '3027' + - '3006' content-type: - application/json date: - - Thu, 28 Apr 2022 06:00:31 GMT + - Tue, 10 May 2022 04:41:18 GMT expires: - '-1' pragma: @@ -1852,26 +1988,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/agentPools/c000004?api-version=2022-03-02-preview&ignore-pod-disruption-budget=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2022-04-02-preview&ignore-pod-disruption-budget=true response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/52bb104d-0ec1-4049-9e81-63b520742904?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e0b3d5f-c81e-4085-9472-af8791e9e309?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Apr 2022 06:00:33 GMT + - Tue, 10 May 2022 04:41:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operationresults/52bb104d-0ec1-4049-9e81-63b520742904?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0e0b3d5f-c81e-4085-9472-af8791e9e309?api-version=2016-03-30 pragma: - no-cache server: @@ -1881,7 +2017,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1899,23 +2035,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/52bb104d-0ec1-4049-9e81-63b520742904?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e0b3d5f-c81e-4085-9472-af8791e9e309?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d10bb52-c10e-4940-9e81-63b520742904\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-28T06:00:33.26Z\"\n }" + string: "{\n \"name\": \"5f3d0b0e-1ec8-8540-9472-af8791e9e309\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:19.2033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 28 Apr 2022 06:01:02 GMT + - Tue, 10 May 2022 04:41:48 GMT expires: - '-1' pragma: @@ -1947,24 +2083,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --ignore-pod-disruption-budget User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/52bb104d-0ec1-4049-9e81-63b520742904?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e0b3d5f-c81e-4085-9472-af8791e9e309?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d10bb52-c10e-4940-9e81-63b520742904\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-28T06:00:33.26Z\",\n \"endTime\"\ - : \"2022-04-28T06:01:25.8785914Z\"\n }" + string: "{\n \"name\": \"5f3d0b0e-1ec8-8540-9472-af8791e9e309\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:41:19.2033333Z\",\n \"endTime\": + \"2022-05-10T04:42:17.4383957Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 28 Apr 2022 06:01:33 GMT + - Tue, 10 May 2022 04:42:18 GMT expires: - '-1' pragma: @@ -1998,26 +2134,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8c7dfcc-3f83-407a-ad32-1828b1de508d?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0f35b7e-7fd4-4d3e-83db-da0f4726a2a0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 28 Apr 2022 06:01:34 GMT + - Tue, 10 May 2022 04:42:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operationresults/d8c7dfcc-3f83-407a-ad32-1828b1de508d?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b0f35b7e-7fd4-4d3e-83db-da0f4726a2a0?api-version=2016-03-30 pragma: - no-cache server: @@ -2027,7 +2163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml index 40ee91ac0bb..4442ecef9b8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:16:28Z"},"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","date":"2022-05-10T04:27:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:16:28 GMT + - Tue, 10 May 2022 04:27:24 GMT expires: - '-1' pragma: @@ -43,18 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlqonlwtqb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiog3cimjt-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -65,38 +67,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1417' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlqonlwtqb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlqonlwtqb-8ecadf-7c6dd9cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlqonlwtqb-8ecadf-7c6dd9cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiog3cimjt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestiog3cimjt-8ecadf-36651a67.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiog3cimjt-8ecadf-36651a67.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -108,21 +110,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3055' + - '3234' content-type: - application/json date: - - Thu, 14 Apr 2022 05:16:31 GMT + - Tue, 10 May 2022 04:27:28 GMT expires: - '-1' pragma: @@ -134,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -152,14 +156,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +172,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:01 GMT + - Tue, 10 May 2022 04:27:58 GMT expires: - '-1' pragma: @@ -200,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +220,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:17:31 GMT + - Tue, 10 May 2022 04:28:28 GMT expires: - '-1' pragma: @@ -248,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:00 GMT + - Tue, 10 May 2022 04:28:58 GMT expires: - '-1' pragma: @@ -296,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:18:31 GMT + - Tue, 10 May 2022 04:29:28 GMT expires: - '-1' pragma: @@ -344,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:01 GMT + - Tue, 10 May 2022 04:29:58 GMT expires: - '-1' pragma: @@ -392,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +412,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:19:31 GMT + - Tue, 10 May 2022 04:30:29 GMT expires: - '-1' pragma: @@ -440,15 +444,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b660fc44-6d86-4e00-820d-a22cb76150e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b30c9c62-9122-45e6-88e1-a4822df4dd99?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44fc60b6-866d-004e-820d-a22cb76150e4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:16:31.3233333Z\",\n \"endTime\": - \"2022-04-14T05:19:48.8135026Z\"\n }" + string: "{\n \"name\": \"629c0cb3-2291-e645-88e1-a4822df4dd99\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:27:28.3933333Z\",\n \"endTime\": + \"2022-05-10T04:30:57.0382293Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +461,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:01 GMT + - Tue, 10 May 2022 04:30:58 GMT expires: - '-1' pragma: @@ -489,39 +493,39 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlqonlwtqb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlqonlwtqb-8ecadf-7c6dd9cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlqonlwtqb-8ecadf-7c6dd9cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiog3cimjt-8ecadf\",\n \"fqdn\": \"cliakstest-clitestiog3cimjt-8ecadf-36651a67.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiog3cimjt-8ecadf-36651a67.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc745bd4-229b-4895-9f89-73e262d0dbdc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4dd4e2cb-b6e6-4353-947d-637bb7a3a144\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -539,11 +543,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:01 GMT + - Tue, 10 May 2022 04:30:59 GMT expires: - '-1' pragma: @@ -575,16 +579,16 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/upgradeProfiles/default?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default\",\n \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n - \ \"properties\": {\n \"kubernetesVersion\": \"1.21.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\"\n + \ \"properties\": {\n \"kubernetesVersion\": \"1.22.6\",\n \"osType\": + \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\"\n \ }\n }" headers: cache-control: @@ -594,7 +598,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:02 GMT + - Tue, 10 May 2022 04:30:59 GMT expires: - '-1' pragma: @@ -628,26 +632,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92ca7d83-e164-4e59-b10b-b07219c0f427?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/762cc2d1-97ba-476a-89ae-1100a5c821fa?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:20:03 GMT + - Tue, 10 May 2022 04:31:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/92ca7d83-e164-4e59-b10b-b07219c0f427?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/762cc2d1-97ba-476a-89ae-1100a5c821fa?api-version=2016-03-30 pragma: - no-cache server: @@ -657,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml index 04cc7961326..1d4ca011c86 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml @@ -112,7 +112,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -489,7 +489,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -625,7 +625,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2022-04-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n @@ -687,7 +687,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' @@ -734,7 +734,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2022-04-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n @@ -792,7 +792,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2022-04-02-preview 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 @@ -851,7 +851,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2022-04-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n @@ -930,7 +930,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1424,7 +1424,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1512,7 +1512,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\",\n @@ -1573,7 +1573,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2022-04-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n @@ -1643,7 +1643,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n @@ -2064,7 +2064,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n @@ -2124,7 +2124,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -2254,7 +2254,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -3315,7 +3315,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -3416,7 +3416,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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/agentPools/c000005/upgradeNodeImageVersion?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005/upgradeNodeImageVersion?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n @@ -3479,7 +3479,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n @@ -3542,7 +3542,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: '' @@ -3591,7 +3591,7 @@ interactions: - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 (Linux-5.13.0-1021-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2022-04-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml index 1b40fb7db67..8aefcf4a22a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:19:58Z"},"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","date":"2022-05-10T04:32:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:19:59 GMT + - Tue, 10 May 2022 04:32:44 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6ocwzm365-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestouo2zkpck-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6ocwzm365-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6ocwzm365-8ecadf-ffe31920.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6ocwzm365-8ecadf-ffe31920.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestouo2zkpck-8ecadf\",\n \"fqdn\": \"cliakstest-clitestouo2zkpck-8ecadf-89e4ad42.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestouo2zkpck-8ecadf-89e4ad42.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:02 GMT + - Tue, 10 May 2022 04:32:51 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -153,23 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:32 GMT + - Tue, 10 May 2022 04:33:21 GMT expires: - '-1' pragma: @@ -201,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:02 GMT + - Tue, 10 May 2022 04:33:51 GMT expires: - '-1' pragma: @@ -249,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:31 GMT + - Tue, 10 May 2022 04:34:21 GMT expires: - '-1' pragma: @@ -297,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:02 GMT + - Tue, 10 May 2022 04:34:51 GMT expires: - '-1' pragma: @@ -345,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:32 GMT + - Tue, 10 May 2022 04:35:21 GMT expires: - '-1' pragma: @@ -393,24 +397,71 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0744a47e-e816-4b74-b891-3008b0531a49?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ea44407-16e8-744b-b891-3008b0531a49\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:20:02.38Z\",\n \"endTime\": - \"2022-04-14T05:22:58.7711406Z\"\n }" + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:35: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:02 GMT + - Tue, 10 May 2022 04:36:21 GMT expires: - '-1' pragma: @@ -442,39 +493,88 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7768164f-5740-4f04-870a-bbd08ff49fe9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4f166877-4057-044f-870a-bbd08ff49fe9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:32:50.9933333Z\",\n \"endTime\": + \"2022-05-10T04:36:43.0957076Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:36: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 --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6ocwzm365-8ecadf\",\n \"fqdn\": \"cliakstest-clitest6ocwzm365-8ecadf-ffe31920.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6ocwzm365-8ecadf-ffe31920.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestouo2zkpck-8ecadf\",\n \"fqdn\": \"cliakstest-clitestouo2zkpck-8ecadf-89e4ad42.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestouo2zkpck-8ecadf-89e4ad42.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c14be8e2-9723-4057-a863-022a88fd3d4e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e133c0cd-e4ce-4bcc-b2d5-6dbee7444b54\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:02 GMT + - Tue, 10 May 2022 04:36:51 GMT expires: - '-1' pragma: @@ -528,10 +628,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -541,20 +641,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1010' + - '1003' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:04 GMT + - Tue, 10 May 2022 04:36:52 GMT expires: - '-1' pragma: @@ -594,10 +694,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -607,22 +707,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '947' + - '940' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:07 GMT + - Tue, 10 May 2022 04:36:55 GMT expires: - '-1' pragma: @@ -634,7 +734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1190' status: code: 201 message: Created @@ -652,71 +752,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:23: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 --node-count - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:06 GMT + - Tue, 10 May 2022 04:37:25 GMT expires: - '-1' pragma: @@ -748,23 +800,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:36 GMT + - Tue, 10 May 2022 04:37:55 GMT expires: - '-1' pragma: @@ -796,23 +848,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:06 GMT + - Tue, 10 May 2022 04:38:26 GMT expires: - '-1' pragma: @@ -844,23 +896,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:37 GMT + - Tue, 10 May 2022 04:38:55 GMT expires: - '-1' pragma: @@ -892,23 +944,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:07 GMT + - Tue, 10 May 2022 04:39:25 GMT expires: - '-1' pragma: @@ -940,23 +992,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:36 GMT + - Tue, 10 May 2022 04:39:55 GMT expires: - '-1' pragma: @@ -988,24 +1040,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d1351fa-eee4-4a82-bacb-aab0951e50e2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9db3f120-caf8-4ad2-aad5-deeb0061e97c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa51131d-e4ee-824a-bacb-aab0951e50e2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:23:07.17Z\",\n \"endTime\": - \"2022-04-14T05:26:41.0518088Z\"\n }" + string: "{\n \"name\": \"20f1b39d-f8ca-d24a-aad5-deeb0061e97c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:36:55.9966666Z\",\n \"endTime\": + \"2022-05-10T04:40:14.7609583Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:07 GMT + - Tue, 10 May 2022 04:40:26 GMT expires: - '-1' pragma: @@ -1037,10 +1089,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1050,20 +1102,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '948' + - '941' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:08 GMT + - Tue, 10 May 2022 04:40:26 GMT expires: - '-1' pragma: @@ -1095,10 +1147,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1108,10 +1160,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -1120,20 +1172,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2021' + - '2007' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:08 GMT + - Tue, 10 May 2022 04:40:27 GMT expires: - '-1' pragma: @@ -1165,10 +1217,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1178,20 +1230,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '948' + - '941' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:09 GMT + - Tue, 10 May 2022 04:40:27 GMT expires: - '-1' pragma: @@ -1213,8 +1265,8 @@ interactions: body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "currentOrchestratorVersion": - "1.21.9", "upgradeSettings": {}, "powerState": {"code": "Stopped"}, "enableNodePublicIP": + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.22.6", + "upgradeSettings": {}, "powerState": {"code": "Stopped"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1229,16 +1281,16 @@ interactions: Connection: - keep-alive Content-Length: - - '501' + - '494' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1248,22 +1300,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Stopping\",\n - \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/76ebd84d-05a0-470f-98a3-b2f05bb186c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfcd0885-8081-4c2c-b7fa-45ded11a1479?api-version=2016-03-30 cache-control: - no-cache content-length: - - '978' + - '971' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:11 GMT + - Tue, 10 May 2022 04:40:29 GMT expires: - '-1' pragma: @@ -1279,7 +1331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1191' status: code: 200 message: OK @@ -1299,23 +1351,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/76ebd84d-05a0-470f-98a3-b2f05bb186c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfcd0885-8081-4c2c-b7fa-45ded11a1479?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dd8eb76-a005-0f47-98a3-b2f05bb186c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:27:11.8166666Z\"\n }" + string: "{\n \"name\": \"8508cdcf-8180-2c4c-b7fa-45ded11a1479\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:40:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:41 GMT + - Tue, 10 May 2022 04:40:59 GMT expires: - '-1' pragma: @@ -1349,23 +1401,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/76ebd84d-05a0-470f-98a3-b2f05bb186c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfcd0885-8081-4c2c-b7fa-45ded11a1479?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dd8eb76-a005-0f47-98a3-b2f05bb186c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:27:11.8166666Z\"\n }" + string: "{\n \"name\": \"8508cdcf-8180-2c4c-b7fa-45ded11a1479\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:40:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:11 GMT + - Tue, 10 May 2022 04:41:30 GMT expires: - '-1' pragma: @@ -1399,24 +1451,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/76ebd84d-05a0-470f-98a3-b2f05bb186c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfcd0885-8081-4c2c-b7fa-45ded11a1479?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dd8eb76-a005-0f47-98a3-b2f05bb186c5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:27:11.8166666Z\",\n \"endTime\": - \"2022-04-14T05:28:19.8855636Z\"\n }" + string: "{\n \"name\": \"8508cdcf-8180-2c4c-b7fa-45ded11a1479\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:40:30.44Z\",\n \"endTime\": + \"2022-05-10T04:41:37.5796396Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:41 GMT + - Tue, 10 May 2022 04:42:00 GMT expires: - '-1' pragma: @@ -1450,10 +1502,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1463,20 +1515,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '979' + - '972' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:41 GMT + - Tue, 10 May 2022 04:42:01 GMT expires: - '-1' pragma: @@ -1508,10 +1560,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1521,11 +1573,11 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -1533,20 +1585,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2054' + - '2040' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:42 GMT + - Tue, 10 May 2022 04:42:01 GMT expires: - '-1' pragma: @@ -1578,10 +1630,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1591,20 +1643,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '979' + - '972' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:43 GMT + - Tue, 10 May 2022 04:42:01 GMT expires: - '-1' pragma: @@ -1627,9 +1679,9 @@ interactions: 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", - "currentOrchestratorVersion": "1.21.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false}}' + "orchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": {"code": + "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/PreviewStartStopAgentPool @@ -1642,16 +1694,16 @@ interactions: Connection: - keep-alive Content-Length: - - '529' + - '522' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1661,22 +1713,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Starting\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93c4ca0d-0586-4408-9aac-6cd8b5cd5377?api-version=2016-03-30 cache-control: - no-cache content-length: - - '978' + - '971' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:44 GMT + - Tue, 10 May 2022 04:42:04 GMT expires: - '-1' pragma: @@ -1692,57 +1744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/PreviewStartStopAgentPool - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --nodepool-name --aks-custom-headers - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c8c35f53-299b-6d41-8770-7a549fe34da4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:44.8666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:29: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 + - '1193' status: code: 200 message: OK @@ -1762,14 +1764,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93c4ca0d-0586-4408-9aac-6cd8b5cd5377?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c8c35f53-299b-6d41-8770-7a549fe34da4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:44.8666666Z\"\n }" + string: "{\n \"name\": \"0dcac493-8605-0844-9aac-6cd8b5cd5377\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:04.5333333Z\"\n }" headers: cache-control: - no-cache @@ -1778,7 +1780,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:44 GMT + - Tue, 10 May 2022 04:42:33 GMT expires: - '-1' pragma: @@ -1812,14 +1814,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93c4ca0d-0586-4408-9aac-6cd8b5cd5377?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c8c35f53-299b-6d41-8770-7a549fe34da4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:44.8666666Z\"\n }" + string: "{\n \"name\": \"0dcac493-8605-0844-9aac-6cd8b5cd5377\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:04.5333333Z\"\n }" headers: cache-control: - no-cache @@ -1828,7 +1830,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:14 GMT + - Tue, 10 May 2022 04:43:04 GMT expires: - '-1' pragma: @@ -1862,14 +1864,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93c4ca0d-0586-4408-9aac-6cd8b5cd5377?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c8c35f53-299b-6d41-8770-7a549fe34da4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:44.8666666Z\"\n }" + string: "{\n \"name\": \"0dcac493-8605-0844-9aac-6cd8b5cd5377\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:04.5333333Z\"\n }" headers: cache-control: - no-cache @@ -1878,7 +1880,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:45 GMT + - Tue, 10 May 2022 04:43:34 GMT expires: - '-1' pragma: @@ -1912,15 +1914,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/535fc3c8-9b29-416d-8770-7a549fe34da4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93c4ca0d-0586-4408-9aac-6cd8b5cd5377?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c8c35f53-299b-6d41-8770-7a549fe34da4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:28:44.8666666Z\",\n \"endTime\": - \"2022-04-14T05:31:12.8697884Z\"\n }" + string: "{\n \"name\": \"0dcac493-8605-0844-9aac-6cd8b5cd5377\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:42:04.5333333Z\",\n \"endTime\": + \"2022-05-10T04:44:00.2822286Z\"\n }" headers: cache-control: - no-cache @@ -1929,7 +1931,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:15 GMT + - Tue, 10 May 2022 04:44:04 GMT expires: - '-1' pragma: @@ -1963,10 +1965,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1976,20 +1978,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '979' + - '972' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:15 GMT + - Tue, 10 May 2022 04:44:05 GMT expires: - '-1' pragma: @@ -2023,26 +2025,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71376ebc-1c2d-4e06-8e12-3dff18a75510?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb6c6246-28d4-41e9-951e-e73b9add083d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:31:16 GMT + - Tue, 10 May 2022 04:44:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/71376ebc-1c2d-4e06-8e12-3dff18a75510?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/eb6c6246-28d4-41e9-951e-e73b9add083d?api-version=2016-03-30 pragma: - no-cache server: @@ -2052,7 +2054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml index e9a341e687b..7c0dbd8dc34 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml @@ -8,12 +8,14 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,38 +26,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1400' + - '1533' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eef9426a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-eef9426a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7c2ced1a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7c2ced1a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -67,21 +69,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3000' + - '3179' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:07 GMT + - Tue, 10 May 2022 04:32:15 GMT expires: - '-1' pragma: @@ -93,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1190' status: code: 201 message: Created @@ -111,14 +115,110 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:32: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 + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:33: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 --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" headers: cache-control: - no-cache @@ -127,7 +227,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:36 GMT + - Tue, 10 May 2022 04:33:45 GMT expires: - '-1' pragma: @@ -159,14 +259,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +275,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:06 GMT + - Tue, 10 May 2022 04:34:15 GMT expires: - '-1' pragma: @@ -207,14 +307,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:37 GMT + - Tue, 10 May 2022 04:34:45 GMT expires: - '-1' pragma: @@ -255,14 +355,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +371,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:07 GMT + - Tue, 10 May 2022 04:35:15 GMT expires: - '-1' pragma: @@ -303,14 +403,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +419,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:37 GMT + - Tue, 10 May 2022 04:35:46 GMT expires: - '-1' pragma: @@ -351,15 +451,63 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b47684ac-e549-47a8-add4-08b791380a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac8476b4-49e5-a847-add4-08b791380a98\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:25:07.26Z\",\n \"endTime\": - \"2022-04-14T05:27:49.1970856Z\"\n }" + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:36:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c676b115-dd02-4bb3-9780-379894d9424b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15b176c6-02dd-b34b-9780-379894d9424b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:32:15.83Z\",\n \"endTime\": + \"2022-05-10T04:36:30.1742996Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +516,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:07 GMT + - Tue, 10 May 2022 04:36:46 GMT expires: - '-1' pragma: @@ -400,39 +548,39 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eef9426a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-eef9426a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7c2ced1a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7c2ced1a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/27e51d2b-e7c0-4cc6-b8c5-6d403a1ca1d4\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e6737549-ca94-41b3-ba0d-ec1d9a557259\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -450,11 +598,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:08 GMT + - Tue, 10 May 2022 04:36:46 GMT expires: - '-1' pragma: @@ -486,39 +634,39 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eef9426a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-eef9426a.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7c2ced1a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7c2ced1a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/27e51d2b-e7c0-4cc6-b8c5-6d403a1ca1d4\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e6737549-ca94-41b3-ba0d-ec1d9a557259\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -536,11 +684,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:08 GMT + - Tue, 10 May 2022 04:36:47 GMT expires: - '-1' pragma: @@ -574,14 +722,14 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2022-04-02-preview response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsS0wyNTFaMGRVYlZVNE1EQjRaM0I2U1dNdmJEUjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1RVJUQk5SRlY0VGxSUmVGZG9aMUJOYWtFeFRXcEJNRTFVVVhkT1ZFa3hUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQnJVM1pIUVdNM1QyZFdWR3A0V0ZseVdsQTRVR3RrWkZoaFQzTk9NbGhZVVc1VE1USm9iRTVuVG1SVVZYVjRPVmRYZFVodGQwUndaaTlEYWsxR1ptRUtaVXhwTjB0aU1YWk1ZWEozUjI1bU1XSlpSbVE1TlhseFozaE5lWGhSV2tKS2VrdG1WVkYxVEVVNVYyOVdURE5wYmtsb1VHd3hVMUpMT1ZkaGRuTXpZZ296YUhSVk1GZGtWVXN5VmtsdFlsSTJOVmxQY0VoaU1UUjBNVUZoUjFGR1EwVkpjVmh4YVdkbVEzWXdRa2hVWTFZMmMwWXdPR1ZPYzJZNE9IVjFkVGxSQ2tKSVdrWTFNVU5WY2trdlRURjZOMHhNWnpaWVNHVTFTakV3UkdoRVFWTkdZV1F3YkhkalZIbE1aa012YVRFd2RWTTNUMVJMVmxwUU4yVjVSRFkxYWxjS1ZuRlZMek5IVTJORGMweFpNME4xT1cxd1VYRkVhMlZTZDNWRmNHRTNPRFY1VWs5cE5YQnBkR2tyZGpkcmJrSTRUMjExV1VsSE9HWlhlRmsyYTBReWVRcDRTMjlRYTJsRVIybEhjRTltZWpkWlZWVTFOaXR5TUhwRFRWRkNVamhCWjA1eVFtTXlkbkZoTDNwQmJXMVJjVXRTUlVGVU1uUnRMMGhuV0hNd1JYSk9DbXRwVjJaeE5WZzBMek5hTUVGVVZuWm1PWEZMV0dSdk9GSlZSSEo0VERWRWMzVlJSV0puVDBkWWNtbzFZVFpCU0RsaGNrczBaRU15WjIxWEswNVhObE1LV1RKRlFsRnJPVWxrVTFJeFJXdHhVRVpyVXpaV01GVk9jalowYldaWmRHUlpMMlp1ZGpCQk5pODJZV0pLTDB4cUwySjFPSEZVUTJWaU5uUldOV2hSYkFwRE5tMXhSM1ZNSzBwaldWZENUM2hOVWpsbFlrOXJNVTVhUVVac1pFdFBWRVl6S3pad1lYUm1Xa0pJVVRKUGNtTllZVzR2VEROeVdGRnBZM1IxVUVRMENtNXJVekJ1YzJWTVdtSldWMk16TlZseVJWWnpUMk5PWTJsYVpEQTBhbEpYWVU4MmVGZGFkRXRCYmxWeU5EWkxWV0ZpYUZKeFNVZENaWEU1UW5KNU5sRUtPVE5MVmtZdk5FMUtjVFZYWWtkdWRWTkRWbVJYVFhjM2IwVmxUbmd6YjNONGJtTkZkMFpwWjFoQ1RVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1QwMVBibTlUTjJOUk4wWklhREV4Q2paRFNYVnNWRGhWYlZOcGVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuWm5OM0F3TVhodVVqVktkVlIzYkhJelJsVTBjWFoyVlhRS05GTTNSVkE1Y0VaemQwSXhRMkpYT0c5MVJHd3JSbFpGUjNaUk0zQnZOelpYUm5wNVJuZ3ZaWEZJYlhNeU0yVXllR2wzVjNwQ1JXbEpOV0UzY2taMmVBcG9hblJYVENzeFdXNWxSbnBtWlZRMVJ6ZFlPVTVYTnprM1EybE5VQ3RVSzFoeFVsRnFTVVUzUTJaTE5YQkhhazkxVTNVMlJVOTVhME5RVUdwWmJXRm5DbHB1ZVdJNE1HNXlhVGRTYkVVNGIweG1UbWhwWjBsV05HaG1kbEYwVDFsTVFsWnBWWGR0TW5ablNVaHpSMXBOWkRWVVN6bDZOM2RhWVVaNlVtbzJRVklLUkdwSFlqTjFNV2g0TVhKUGMwdG1aMlo1TUVwM0swNHhVakZFVjFwWFNtcHhObFJJV1ZvNU1tNTZRelJOU2tkWE9GTXZibkpGTUVaTFRuTlNVRE5VZVFwWWMzWnFVRlZ4YUZWRlYyNXNSbEpHZERkcGNqQnRMM0o0WkV4QldXbDJSSFZHT0VsWGJXOVhkRzlXT0VSd0t6QmliV2hGZEhJNFExZGtaVFpRYXpsWENuRTFaamt3V214VWRGVklSMVZJUW1od2VIRTJTVmgyUVdsdGNraDVVVUpOY0ZkWmVFdzFTR040T1dObGVtOHhlRTlCVkRaaE4wUmxjMVJXTjA1Tk1EQUtURWhtYlZORE9FaFRUVXB2UjFKbloxcDBkWFptTTNKWFRTOUNPRmRHZVhCaVVqZHFWRXhPVFVZelF5OXFlWEJyVm5BNVJqY3pSWGg2VlRKUloza3hhZ3ByZVhWd1RUSndjMFpQVW5CMWF6SmtiWEl4YURkT2RFcHlVRkZYWkhoS2FETlBRbTVWYUZwNUszYzVWRU5STjJWQ2RVVTRiVmxJU0VoMU1UWXlSMWhOQ25WSE9GbEdXREptU1N0eFF6bFJaV0ZMYkRSVE5rNHZiVU5EWm5sNlREUTJiV3R1VTBaRFJsRjFUV04yVWtSQk1UTTBaVWxFWWtoc2FVaEZNbFJKYjNZS2JVNUVORGQ2VkRGNlJFdDFaV1pwWkVwMlNIVndNRzFSYUc1bVltZHNSM1JEVEdGU2MwVjBhVEZaZW5KRWRrZDRWVVZxYjFwcGF6TkpjRTVSTHpONlVRcE5NMDQwTlhWVlRYUjRZWGhMUlZOMVlXYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zamdiZTZ1ci1lZWY5NDI2YS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDY0aG1wcgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDY0aG1wcgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHY0YmJpcXRsa2dfY2xpYWtzdGVzdDY0aG1wcgogIG5hbWU6IGNsaWFrc3Rlc3Q2NGhtcHIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NjRobXByCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHY0YmJpcXRsa2dfY2xpYWtzdGVzdDY0aG1wcgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlYwZHhkVlZNTTBodlNEQTJVR2hwTVZwbE4weHRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFdwQk1FMVVVWGRPVkVVeFRrUkdZVVozTUhsT1JFRXdUVlJSZDA1VVNURk9SRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnpLMDVQWTJ4SmVFTm5ia1oxU1ZCb2RWVk1hbGtLUlU1UVVFRjZXak42VjAxalZXdFVTMlpWTmpoMlVXODNkalpXT1ZCWU0wbzJXRnBoZG05WFJtZGhZVlJxWWxWV1dGY3ZNRzEwTTIxdU5TOXZNVXRJVXdwblRHNVVlV3BPYjJzM1RETk1TRU5LVnpNMWFWRjFSamd4Wmk5bVNFOXJRMGgzZVhjNWVIVkhRMUZTVVd3eFNtUmtVbVozV1U4dloxQklSWEV2UTJ0b0NubDVlR2w1TnpaRlNFMTZia3hUYmt4MGVVVjRVVFZ6ZFZNeU1FMVJhRTFqUXpWR01YZDNSRkJOYlhaaVJEUkhNMHgxTm00clVWVk9SVFUyTlhZMFdtY0tNbFJOTmtsT1l6bENZV3hVTkVkS1F6WjNjR3BQT0VZelpFVkZTWGxITDBkNU4wZEVZa3RaZVZCNlRFTmxPVXMzZUVweE5XVjRURVZDVVVwRlducHRWZ3BGTmxRM05sSm5iMXB6VmtoS2VtZEhUVU4xTjBGdGNHOWlNbGxyVFN0dk5WSjNiMnRSYVhsdWJYUXpXWFp3UVZCR2F6QXpkR3BITVRsbFl6SlBaRlFyQ2k5cVpXeHVUVmszTUVJclMweFFaRFZJYml0bk0zb3ZXVlpSUjB0RVRUUndlWE5wVEVGeVp6QnNSRE5wWkRSTk9UWjZkMnhTVVZKRGFtNDJZbmxJUTJvS1RWbDRVSFZhV1N0MVlVZ3lSbWRVZFZWMFRubDNNVFJDU1ZCYWFrOUtPV05FWlVKaFMwTTJOamQyWVZrNVRHcHpRVVJFVUZRelppOUNWak00ZVdFNFNncGtUMG81WkM5Uk1rNU1lRE56VUZOUU5uRmlVWGRIWW5GV2MxWlJVVm81UWxBdlQzVkdOMnM0ZVZaME1UZzBjbEJQTURkR01Fc3hXR3gyYVhVck1UTXhDbkZOZFdjMFpEQkNTRXh1U0hBMGNFeFRSVms1YW1VM2FWVlhWbko2WkdORE9HUmxUVEJ0ZWtsV1pVSmhhelZ0UnpnNFl6bFZZVU5QY1RoWVNWRjBTM29LU1dSaFUxQmtPV2w2VlhOd1UxQmlWM054TUVoUGVIbzJVbVJtZWtwVWJraFVaVkJ1YmxOS2EwVXhLM2RTZWpGWVlXWlZkWEZFWWxaM1RreERUMGxvV0FwdFFsTlRiRUp4Y2pscVEySnlURGQ0UjFkMlNrRjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUnFSSEEyUlhVelJVOEtlRkkwWkdSbFoybE1jRlV2UmtwcmIzTnFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRjNiMFl5VmpOV2J6SlFNRzFtV1NzeU1ubHJPQW95SzB3eVR6Sk9SV3AyTjBZcmNYcHdSaTkzTjNSTk5XNXhkMkoyTUd4akswUk9WVzl6VEhoRk4xWkJjakV2WW14eldXNWlhSFp0U3pnMGFVb3ljV2RIQ2taT1RrbHZNakF4V1dSNllYQm5jekE1YlhVMldERnNVRnAwVFRsd01teHBVMUJMY0hCME5HUkhibkpyVDJKM2IwaEZSMDFEYjBKcVdsWjBhbWhMU1drS1ZVTkhSeXRwV0hOMFp6RXdWemQwVDJkVllqRXZPR0VyVVV0VVJ5c3JZV0kyYjBGVVVuaE9ibFZXYXpKRVUyZDNTMFp6UldjNUx5OHJOelF6VjBKRVdBb3dUV0o1V1ZaWk1YUXdLelpzYmt0cWIwbFFWMVJ5TlVSdmFtbHpOR1kzWmxWNldscHhjbkZrUm1wRk9HZHlVbmMzWXk5WlpHVjJLM0JTTnpVeU5IUXhDa1JRVm5Wd2FVbzRiRXQ1TDFBNWVXTkdhRzU0ZFZkSFRYRTNTMlZ6YjA5clVERlVZM1pZY1dsaE5WQnFiRE4wYVRKWFlVUXlZa3BCVFZOcVl6ZHNSallLZVVGRmNEUkJSazVOVFVKeVEyeHJWSE5XZHpScWIzWkxiblZaSzBWWk1YRkZWa1U1V1VSMlpYcDFkRTk0WWk5aVlYQk9hVUpRS3paMVpFMVROakZqTWdvdmVrcENlR292V1ZjelRERm9RVFpaTUhoYVVuVnRTMHB0V2xKVVNUSnFWVzVFU2xCQ1pFSmlVMkpuU1ZkRlRHWXZiRlJ6ZVM5SVdHMHJMMk12TkVKTkNscE9RVEl3VUd4RGJVNDRUbGxGV0RONllVTlNjRFJRUTJoaFdUSnBRbUZXY25GSVVHZFVRUzg1YzFOaVZYcElSRUkxY0hwaFNHbHNVWFZXU1dwemVUQUtTRmQwUzFSTFRITndhU3QwUVZOck5VRlJWVGRUVFVZNGNGSmFNa0ZMYWpWbGEwRjJVVXQxY2tSNmJXTmhaRTlaV0VWWE9XaHFWekZpVVRSSWQxZDNWQXBTY3pKVVJtbHlaa0V4TTBKS2VHZFNhV0V2WVVGRFRWQmxUa2xMWXl0NVNEaEpaMFl4ZVVGT1IyeHBRVkIxV1ZNeU5UQXJZMGx1ZFdOVVRHaFJjM0JYQ2tWTVpYSlNTRk5zT0RFeFJrRkphRTA0VFRaS1QzUk5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJjbEJxVkc1S1UwMVJiMHA0WW1sRU5HSnNRelF5UWtSVWVuZE5NbVE0TVdwSVJrcEZlVzR4VDNaTU1FdFBOeXRzQ21aVU1UbDVaV3d5VjNJMlJtaFpSMjFyTkRJeFJsWXhkamxLY21RMWNDdG1OazVUYURCdlF6VXdPRzk2WVVwUGVUbDVlSGRwVm5RcldXdE1hR1pPV0M4S00zaDZjRUZvT0UxelVHTmlhR2RyUlZWS1pGTllXRlZZT0VkRWRqUkVlSGhMZG5kd1NXTnpjMWx6ZFN0b1FucE5OWGt3Y0hrM1kyaE5WVTlpVEd0MGRBcEVSVWxVU0VGMVVtUmpUVUY2ZWtweU1uY3JRblI1TjNWd0wydEdSRkpQWlhWaUswZFpUbXQ2VDJsRVdGQlJWM0JWSzBKcFVYVnpTMWw2ZGtKa00xSkNDa05OYUhaNGMzVjRaeko1YlUxcU9IbDNiblpUZFRoVFlYVlljMU40UVZWRFVrZGpOV3hTVDJzcksydFpTMGRpUmxKNVl6UkNha0Z5ZFhkS2NXRkhPVzBLU2tSUWNVOVZZMHRLUlVsemNEVnlaREpNTmxGRWVGcE9UamRaZUhSbVdHNU9hbTVWTDNZME0zQmFla2RQT1VGbWFXbDZNMlZTTlM5dlRqZ3ZNa1pWUWdwcFozcFBTMk55U1dsM1N6Uk9TbEU1Tkc1bFJGQmxjemhLVlZWRlVXODFLMjA0YUhkdmVrZE5WRGR0VjFCeWJXZzVhRmxGTjJ4TVZHTnpUbVZCVTBReUNsbDZhV1pZUVROblYybG5kWFYxTnpKdFVGTTBOMEZCZDNvd09UTXZkMVprTDAxdGRrTllWR2xtV0dZd1RtcFRPR1EzUkRCcUszRnRNRTFDYlRac1lrWUtWVVZIWmxGVUwzcHlhR1UxVUUxc1ltUm1UMHQ2ZW5SUGVHUkRkRlkxWWpSeWRuUmtPV0ZxVEc5UFNHUkJVbmsxZURabFMxTXdhRWRRV1ROMU5HeEdiQXBoT0ROWVFYWklXR3BPU25ONVJsaG5WM0JQV21oMlVFaFFWa2RuYW5GMlJubEZURk56ZVVoWGEyb3pabGx6TVV4TFZXb3lNWEpMZEVKNmMyTXJhMWhZQ2poNVZUVjRNRE5xTlRVd2FWcENUbVp6UldNNVZqSnVNVXh4WnpJeFkwUlRkMnBwU1ZZMVoxVnJjRkZoY1M5WmQyMDJlU3M0VW14eWVWRk5RMEYzUlVFS1FWRkxRMEZuUWpaWlVrcFlSbXRMYlZNclVURktkRFpsVEdvMldtOUZORGRwVDNCbmJVNUJiVzFaTlZOT1dsbG1jM2xCY1Zwak1sRmljRVYzTm1oNmVRb3hlR3huS3k5dUwwczJUMVJIYVdrM2VERmFOR1JVWlU5WkswdGhURXhzVGxCNVNtZFBlQzlGUVZrd1pHOWlOSEJvTW1oRFEzRmhaVVpNV2tjMlprUjNDbmNyVTFaVlNYWmpLMVJOZEV4RmRHcHdla2xSVmt4Tk9ERnRka1J1VW5keFUycDZaeXN2T1RsRlJtTm9Obk01ZUVzMFVDOXVVak54VEd4WFZ6Um9hRzhLVjFNcldtRlFUVzFoYWtrNGFVNW5Vbll2TTNrMGJ6ZExiazVrVjJKc1dIZExiM2RsWjBsTWN6bFVVMUZaTDNSV1pXeElTRlZzYTNjdldqaFlOVGhaVVFwV2FUZEJTR3BoY205NUwxWTJZVkZQTVhsVVVIbDZkSFpoYUd0NlowWkxZV0ZNUkU4MVQyUjJSVVJDZWsxSFNFRlViRlUyZW5CYVZuaDFWbEUwVWtseUNqRlRXVU0zTWpsSGFXOHdhVWcwVmtOb1dWWnRWMFJVWlVOTmVrazRkMlJLTWxCU2MwOUZhMnB1ZEd4UFdrSjJOMmRqWlZoUkx6RXdNRFpJTURkcE1uTUtkVlEwYUdwU09FNU5iMW81U3psVFNXUmxOV1pwZEU5Nk5uaEtVVk12VGtVd1JEQTJTSHBOVUV4Wk1HSkdPRmwxUjFGTVlrNVJWbkJwV1ZSM1JWa3dRUXBtTml0SmRsZHlTamxzUmpkeVpIVkdObUZuWVVRM1FVWlFZblZGU1V0bGJYWjNZa1ZJYld0R2NuRXlSMGgwWjFGWmMzZGhZaXR5YjB4RWRrOTVRV1ZWQ2sxdFVFZDFjV2xWTnpsWVdtcFpRM1p3V0RKWk9FVk9VM1o0Vm5GVU5UaFFTMFJ5TURWbWMweHJObUZpUzI4MmVXUjNNM0IxU0hGdmFsTXhRMHAwVTNVS1RIazFUV1I0V0c1T1IwTjZjUzltUmxobWExVTBNRlpHU2xoNFlWQXlhazk1UjFoVWFVVXJObGczZEVKYVEzSTBNMkZIZWs5bmNtdG9jMHR4V0VWcWJBcG1kMk5sZFd0c1JsbzBVMWQzZW5sdlEydFpORTh3ZDFZclUxSjBhRFZTVUZwWVR6SkZhREp5VGtGc2RFaElNREpCVVV0RFFWRkZRVEZhZUhwWlJrOWxDazlwV2pGeWVGSnlNWEEzV1ZRemFGRktaMUZPUzNSS05EWllSeTlxZGtkTEt5c3pVREZOYUZwb2VreDNaamhqYlRGU1ZERk1SR1UxTkd4VlJ6TkRTU3NLYW5OcmFqZHFWSGxtYm5oTmFXcENkbE5hUldwQ2JXSnJLM1o2Y2xWdE0wdEhWRlJYWmpKWVYzb3dkV0ZYYTNBeE5FcEZRMWhwUVVJeFoyWjNaSE4xUlFvdlUwaENjV2hYVXpSRWJ6a3lSSGc0THpJMVFYbHdWakp5U0ZGR1ZYWk9abWxuYlUxUGVEaDBRelYxZDJwRmF6Y3JibkZVU0ZwS1N5dHpjbXhuY2xrdkNrRnFORzg1VEd0MGMzSXljbVEwVmxCU1p5OU5ablpWV1c0elRrUllUbEp3UkZWQ1lUZEdWbkZQYjBwQ1FucHVkR2hVU1dkbFNsRlJaMjFZU0djd0wyTUtiRVJSY1ZCRmRVcDRXbkJTVFc4cllqbEZPSEJoZUVJeGJrSkRUU3QzZG5OeWEwOXhWR0ZOWlRkMFlVZDRSbG81ZFVodVFXbFVjRTU0TWxJemQyMURNUXBpVkVOUVIybHpha3BXYjNGWGQwdERRVkZGUVhvd2RtcEdZMUZKYkVoRlVWbHNaa05xSzJSVGFteHNWR1ZKZURBeGIzcGxha3hMZUdOWGRGb3liVXR1Q25CeE9WTlhNMVV6TlVrNUwwUlhZM1pNTkdsa05GTkVkVmswYkM5YVJqWnZMMHhzTDIxa2NUbEhNbU0yT1c1NVZWbDRVa2xVYzNkRVN6ZFRSemMxTmpnS2VraE5hbFpDYjFwcE0wMW1OVVZLV25ZemJETklNbWQ2ZGpGNVpEZHRUMUVyUzBkU1dVNVFXVUUzT0VkWVRXMVhjVEF2U1VaUFFpOVRTakpsTkN0VmN3cE5VV1J2V2xWT2R6ZFVaa1ptY1daS2FHWkhXbWMzYm10bWVFeFFWMVZ3YjFsUGNXMTNPRkkyZGtOR1VHaFJibE15YjB4SWQyNVJVMVZPTTFWT2FucHJDalo2TTJsWFpuRjJNbEIzY1N0bGEyVmtTWGsxT1RWV01reDNNSEJhUXpSblRHTlBjek5QTVhwQ2RFUkVkMHQzYUdJM016Y3hhM0J6UmtsRGJ6SjRWbEFLZFRGMWQwTTNWa3g2YUVWWWFXUk9XV3hGTkVGWmNIZDNkM1ExYURZMllsbEJURlYzWjFONVRXVlJTME5CVVVWQmVVeDVUVkpCU25kV0t6aGhaWEIzZWdwT2RUTjRSWE5XWVdSRk9ITllTV2xNY21Jd1EwdG1PV012TmtOamVGUlpPWGNyY1daNlZWSkhabk50UTBkTWNVcHBWMDFxTTJsNWEwbDVVbk5EYjJSb0NrNXVTSGx5TkRSVGJITjVORmxIVkVSWVFWaG1NRzlrZGl0Nk5FaE5TazUzVTFRclpqTnhaa2x1UnpsS1JGWkZRWGxNVTFCVFpVODFjSFpPV1M5ckwyd0tlR0ZsVm5oTFdXSlNVMHhFTm14NVNYVkZhMVJWTnpremEyTXliRXBWTkVnd04yWk5UV2hyUlV4NksxQkVjVkZUY1VKdFVtdHpUbGM1VUVkaVNsWmlOd294WkU5a01XVlVSaXRYTkZKWE1rWlRZMVV3ZEVOWmFHMDNSbWRGTW1ORWRUUmxjbFF4TUcxa2NIRlVWR3hPZUROdk1FdHZUMmROVEc4ME5XUXZiV3g1Q2tncmMwUXdVVXhhY1V3eldHa3hRbVJhV0hFNFRWcE5hMHRUVGxoWlJIZG9ZbTl5VlM5S04xYzJSWGR4U0dkMFdGZHJRbFYwY1hGUk9DOXdSa1ZIT1c0S1UwMTFlSEozUzBOQlVVSm5XUzg0YUM5a1pXNW1jazlLY0hock0xcFBPRVZrYUVSVlQzbDFVa2xGZGxSNlRIVndOalp6UzFjeGJIUnljRko2U25CNGJ3b3dWR3BaSzB0UUsxUkdOWFJqY1hsdE5rTmhkV1Y2TTBVeGJGTTFTeTlrU0V0TlpFbEhhMGM1YlVrM1R6VlNjVTFXYUU1M2JFeFdhSFJEUVROWFZFOU1DbTV0Y1hvM2R6Vm5aRXBEY0hOQlFuWXJVbU5QTlVsc2FYTXlOSGRSYUVaMVNFbE9Uek5uV1V4bWNuVm5lVmx6YlV4MlZGWk1OV3hQTm5kNmJVZFhaMGdLVW1sdE1XSlVkazQxY25ac1puRnFOMVppYmtrMFZYRk1NV3hFV2sxNVIwaElWVFJ0Y0VwNlFrMXdURVZ1YzJoMGFHUnFTbkEyVFdsd09VZzJNbEpEZGdweGQwbHZNWFprYzFwdmRVdDZjSEl6TkdaNlprMXVkVkZFUXpkNlVrRTFObTEwVTB4WlVEZHFVVTF2TjNGTWREbENValV2VlZCbFZWQldkM001V1RWakNrMWhTbkZYYWxsVlRDOXJTalJYY21wRmFHdHBVa3REYjBrMWFEaFhSVk40UVc5SlFrRlJRMUJWZVc5cFIwVmxSRUo1WWtsQlJtRjVSamRsUjBobFVHd0tWMjV0ZDNrMmNTdFFOVlJCVVdOdWJqaEJZWFZYYkZkd2RtTk1aR2NyTVRSSk5FaHdjVlI1UWpkSGFUaE1ORXhhYkRaT2QycE1PRVpCVTFCclRtbzVNUXBHZUc1dlkxbGhjemhyVjJoVmEyRTFRMEpwYlZBMGVuRkplRlYyUWtVNE1tbzRUMFJQWVRFNU5XUXZUa0ppTWxaek1VUkRWVFJrY1hwRU1TOXpWRXMzQ2pScVQxTmlhbmhRVWxKVk5WTnliek54V2pRMVMxcEthMWs0Tm1kV1MxaFBUR0pGTkhCYVRWZEJka05aUmpSd2VsUlRUVGxDYWsxQmVXZEpjelJsUW5VS1FqUjJXalIzWmt4cU1HRk9ZVXRQVDI5dllXOHhkbFk1VkdZNWFWbHRSVTFRV1hkeVVsTmpWRFp1YlhKalRUUm9iaTlqVFRodFpuVXhRa3hJZUhaSlNBcGhXREZ0UjJsS2VrTnRLM1Z4VjI5S2NETkRVVVpqVWpSTlowOURjM014YUZSTmNUWklaMk5SU0N0bmRHbFlabkJGU0RsV1RVVkJUM3BYZWxRS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBhYTI5YjVkODdhOWRkNzkxMjQ2NmIwOGY5NjA2YzZiNzY2N2NmM2ZjNTRhNmIxZGQyNDNjYTVmN2Y0YTI1OWEwYzkxYjU0Y2NjODYzMDIyMDhiOTUxNjk2N2E4NmIwZjg3Y2IzYmFkNzVhZjA5ZGRlYjdkNWQzMDVlMDM1ZWRmOAo=\"\n + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCQ1ZGRTFNeTlFU2t4bmFrRlFUVWxwTUZOWVpFbDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1VVJYZE5SRkY1VFdwVmQxZG9aMUJOYWtFeFRXcEJNVTFVUVhkT1JFMTVUbFJDWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtNVBPVGhGZUhsRFowRjJaVmhETDNwM1JYTlNhVWRvZVd0U1R6QlllbTQyVXpseFdIRndUVWR1VFZsV1RUUlZRVVpXU2s4eWRVdGpNR2RRZDNkblJUY0tja04wYUVwNE1FWldlRWRzWWtKRGJpOTFhekZSUlhKM2RtVmtjM1JuY1VnM1JsQkVZbVpvTVdGVmRuaDBTWGRuVlhOSGRFVlpTbGt5YkZwc2RtNXFUd3BuUlhaUFNXeDRjMm95ZEU1M2EwUjNPVUYzTkZGc1ZVVjJPRzlRU1d0eFpFbFFhazlCV2tGd1JEVlJiVVpuWW5OWU9VWldhamhMT0d4SWFqTXJVbGhLQ21Od05XSmtWbFI1UW5CS1RXUjVha3RvTTJ0TEwyeHViR2g2ZDJKdE16bHRhWGhQTWsxNVowVk1kbXAwZW1GcE9GTjFZMDl4YlZGWEszVmlMemxhWm1VS2EyRXhTVFY0YjJGb1pYVldVeXRSYlV4RmJVSmFjU3QzV0RWV05YVjBlVFlyYWxsdWNrSTNTMDUxVkd0cmJtc3dSVXBtTTNVMWJXTmhkalUwU0dGc2NncFllVFp6VlVGR0x5OXhhRzFpUTFsbVZtcDBURVY2WWsxWmJFaHhiWE5vT1RWcWNERXlaR2swTkZObVRUWlZaSEkwVldwT2JuaHpLMWhvZWxwU2RGTlpDbU5yZGtNMk9FRldSVVpZWkM5TGFIZDBPSGsyZFRSVVdGSnlWRmx6TXpWUVlrRk5kbkJPV1ROaFJXOUxOMjlDV1ZaeFkzcG5SMk50U1dSSGJIUXpURUVLY205Sk4yNXdhRmRsTUVoMWEzZDFWVFJ4TURKb00ydHJPQzg0UjBablVESlFiMGxITXpCSGJuWkhjRTR5UkhjMU1IUnFWVEE0Ykd4VU1IRklXa00yZGdvM2RsTlBiRWxzWWtkblNIQTRSbXBJUm5aU2IwZGhVbFpYV1ZwS1FqQlVWalZJYURoeVZsWmpTVXhrT1U1S2JVUkRRVGw1U0dkeFNIQlBhVmRJU0dacUNsSkNhbXN5V0dOcmIwaDFLMjlLUTJSd1dITkVlalJpYWpOWlR6bDRlVlJWWW5CWFUyc3ZNbmc1ZDBsVGRtZHpVVFE1YmxWcE4wNXNSSHBvV1VJemEwRUtSREZGV0hCTmIxUmtiV2xsTlhwc2NXdDJTSGw2TlZCc2RtUm5XVk5PWlRCdFVWSTJkWEozV1dRd2EwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1QzZDZkemdyTTFkWlpVcEJhbVJEQ2pGRldWa3ZTbEZ6TTBKTlowMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFtMUljRnBxVm5VMFpWVTRMMU5NTkd4cVQzWmFWRkZ5Y2tJS1JYRXJTaTl1VEM5WFdsRnVSVmMzVG1kM09YbG9RMWxsTmpKQ1pHWXhWalJzTTJWakwwc3dORXhhU1doVWNVdHRLM1l5VUZVM056UmFWRnA1VTNseFZBcHhXRlp2WVhSRmIwaFhhREJMWjFGT2FsbGpaVFZxY1ZkdVFURXJXbEZtZDB0d1RqRklXR3RJVTBGRkswNTJVRlIxT1hKSmFEWnNlVWxPTUVOQ1dWZFJDblJuWTNaRVpXWllXVzVFUzI5elFtOU5ia1p0TTFwUGNGUlZORGwwTlVwUFR6ZzVOV2h4V0U5SFNWZzJiVnBGVDJkaldqVkNRMDlIV0dwbWIwRTFTSEVLVkZSUmNGVkJRVXBOV2xSeGNsWm9PVVpqY1ZsVGMwNVdOamxsZFdWc1lrTmxNM2REZDA1UFRITkNRMDB2YVdjd1pISkJRbUZTVWs5NVdUQllNekJPWVFwYU1VWTBVVGQ0U2l0aVRucGtiRFF2V2xCSkwzcEJkbFp3WkZKVVQyUk9jSGRWTVdSNFdHNXFNVzFNS3l0dFFqSnhkMEVyVTBrMGRHeFZNekF6WTI1TkNsZ3djamgwZEZNelkwRnZPV3hZTlRCUFJuRlFTMXB0U1VaRlVqSk9RbnBNTm5BMFpGTTVNbVY1VVdWWVF5OXhRbmNyVGl0eWJqQjRVbXhhYkhoUFJrWUtWRkoxT0hGb01VVnZXalI1ZVRsUU5YVnJRV3B3VDA5TlFYVXdSbmxyZWtGU2JHeFBUak55VmpZMFVsRlZURGxoVmtJd2JETjNRak50VVZsclEyWjNhZ280WVVOUVpsVjNOVk5aV2pWMlRrcHNOWEZ3SzNWd2JXVnFXV015YUZOUVZsazNNWEpUZGpRM1QxUmxWMkV4SzNoeVVHbG1ZakpDZFZNM01WQllVaTlJQ25ocFNVeEhOMVZYY0hSVU4wOVBRVmRyTjAwd1NFUnlaak5CVW14bWNHOVVMM2RrTW5NclowcEtaM2M0YURncmJVTTBRVTU2ZUU1NmFEWTJOaTkyUm1JS1lXdzFVVm92UTJKa2QySmtSVGx2TkRaWVR6SjVXRUZyYjNGb1RrOTJZbFYwV0dsRlpGUjRkbWxRY1RSRWFIbFRaelZPV1VWRWFGcE1ZM0k1UW0xdE9RcDZkVGhaYjBseVN6QkhWbkptYVc1MWRYYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zeGI2emYyMy03YzJjZWQxYS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGZpb3h2cQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGZpb3h2cQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDduZXV5Z3Z3eGZfY2xpYWtzdGVzdGZpb3h2cQogIG5hbWU6IGNsaWFrc3Rlc3RmaW94dnEKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0ZmlveHZxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDduZXV5Z3Z3eGZfY2xpYWtzdGVzdGZpb3h2cQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlJsbFhWRGROWTFCaFlVRnRkekZYWjBOVmJsUllWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFdwQk1VMVVRWGRPUkVsNVRsUkNZVVozTUhsT1JFRXhUVlJCZDA1RVRYbE9WRUpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkNOak41TWxGak56ZE9iMHRaV1UxWU1sRndMMHNLYTI4NGVEQnViMjUzVjFCVlluVXJNa0o1ZWpCU2JrWlhVWFJUVDIxTVluSkhOVFpZTVdGU2QxaGhXVFlyVW1aWVUybDRlbWhsYjNSUEswbHJNRmRvZGdwM2RIRTBXbTV5UVRjclltVndTemRZTWxGSFVqTlBPR1pSWjFCRmNHNXZNRGR6TWs5TVVrOUVORk40TVhkYVREaEZkbVJyTTFNclltMHhkRUZMUW5kR0NsZEVaVmx1T0RaM2RuaGFkekpCVTJKMkszSkRlVlZJVEdGWmNXWkdjWHAyTWxkeVEwVTJXVkpqUWtOM2FGTXZZVUkwYnpoclFWa3ZPWFZUVDFSQmVXa0tTQ3RwTmtOU1NsbDBZbVk1TlV0cWJYVnROV2xDWkRodksyNUlXU3RTUWlzMFlpOXBOa2hFTVRGNmIzZ3pRa2hhYmtweGVsSkRhREJGY1c1VFJTdDFlUW95YzNrME4zRnZhbXAwYzJOSlZuTm1VRXRCUWtwMkt5dFhabTlJWTFGUFNXTk1iblo0Y20xSlNtRmxXVTUxYlhaVWVsbEZjVE5SYXpCblYzSndNbHBaQ2tVM1l5dEdkVXQ0VnpWMVNDdEpMMjg0U2xKcE0ySTJOMGQ2WlZGMGMwdEtiV1pTZFdWTlVrSjBTWEZvUm1ReVdFdGFWMVZRUjIwek5HY3JWSFpaYms0S00xUk5SaXQ0VlZwd05XaENhM2RuZWtKdE9HUnBibWxWTUhodGEwRjFXa3R6TjNWcWRsWjBLMkl5ZERRMU5tSjVVWEJOWmtKMGRGTlpkWFZRZURNdlRRcGtUbTVyTURRM1YwVmFXbVYzT1V0aWJEbDFiR05YVFd4dE4xTmxRM2gzVjFoSkt6azBVR3N6YjJsc1F6RmhVa05xVmxkTFduTkpPWFJLTlRKdFoycFZDbGRzZEZOaWQxUjRXVXBFZUdac2IzazRZMWRNVkRockwydFNhM2xYYzB4RVVsZFJiamRpYzBWVlJXSlFUMlZXWjNSbWMwNUVNMHBXVkdaRk4yTTFjVW9LVlU5WWFYTkZWemxrZHk5VWIyZ3JkR2g2Umk5Wk1HZFNjbWM0YWt0Tk5rcHdOa05LTTBodGIwNDFlWEJoWWt4WldHWnNaMjB3SzBoa1dDOVRlRUZ5Y3dwSFpISlRhall2YlV0UGVVOVVkRlJuYVZsWGRHcFJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUnpUVGhRVUhReGJVZ0thVkZKTTFGMFVrZEhVSGxWVEU1M1ZFbEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRldibFF3ZEZkdlEyZEZSemxFVkVGWE5uRjFVZ3BGUW1oM01UTk5ibXB6ZFRSeWJISnVNVE4zUzNwMFdUVXZURWh2V2xwbVZqQnNhbk5RV0haWGRHbzVOblp5ZGxSTVJFWjRSbWRCTW1reVdrb3dhWFpPQ214R1JsWnZhMUptWW1SWmJsWXpiSE5wV1VkTVIxSlJPVVpxVFVsVlZHRjNkRk5oYVN0YVVrTkRRWEZvTlZaUlZFMVBOR28zY25KS1ozcFNOa2Q0VkZvS2NUUk9NRFJGUTFSaU1HaFBTRk5aZGpCbmFrOUNPRWxhY2pKbmNFbDVjVEkwTm5oalRtWmFhblZMU2xaWWNDdFRRVVpYVUVoa1dXOTZWemt4VDFkc1JBcFRlSHBFYlZwV2JFdEpNRlVyWlc5VU5XWkhTV0Z1UlhaUmNVZGhPVmg0WWpBNVpWUXJSVVJVY0hWcVprNVFUMWREU1RnM1oxWnRVVkZTUVdKalFsRXpDa0ZIY0RkSVEyTjNMMjlMT0U5b2RtTnZlVXBuUTBSclUwd3JVbVI0WVhBd1JGSmphMGt4UkZoSFoxZE5ObkpQVTFCRVIyeHVZMkp2VEVwdmNuRkNNMlVLZVhCVVduTklRemM1WVRGUkwxQTVVbTFhUkhZeWJHSkNPV3BTT1VsWWVXNXZObkpDTmxoSVIycEplbGN6ZWxOSVJtZGtORmxzY1Rkc2RIQllXWFI1VndwdFlWRkVhMlpZUjJJdk4wZENOWEJWY2pGalRucDVZMnMxY1VJMU5WRlFhWFpOVW5kTmVEQlhiM0JaYzNBMFoyazBiWGw0Y0ZReFRVZG5jRXBJWkRNMkNuaEhNR3BUV25abUwwdHFTazUzVmtkTFFVTk9jSFZ0UjBsMFozTjZPWGRRZGtFM1oxQlNXV3B6YkRCMFZXNVBZVTF2UjFReVVFUnRiMnAyVWxkWldrNEtVMGRqUWxkSFZuUkpURk00TlhaV1FteGlkSFUxZFRCV1ZFaFRjMGRDZWxoMVJqSTFaSFJDV1dSWFpEWkJjRnBrUmlzMVdHcHNaR2hDUlVaRFFrMTZaQXBTV2tsWmRHUnlha0ZrVVV4TU5rNXVZbVYyVkhOS1lrOW5UWEJTZVNzell6YzNha1JVZURoeWJYUlFiREZWZVZsSmMwTjNiM2RYTVhJeU0yNDRjMGxHQ25oU1FXZG5aRzQzYTB4MlYzWTBWMWc0T1V4SllraGpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkMlYwT0hSclNFOHJlbUZEYlVkRVJqbHJTMlo1Y0V0UVRXUktOa280Um1veFJ6ZDJkR2RqY3psRlduaFdhMHhWQ21wd2FUSTJlSFZsYkRsWGEyTkdNbTFQZG10WU1UQnZjMk0wV0hGTVZIWnBTazVHYjJJNFRHRjFSMW8yZDA4dmJUTnhVM1V4T1d0Q2EyUjZka2d3U1VRS2VFdGFOazVQTjA1cWFUQlVaeXRGYzJSalIxTXZRa3d6V2s0d2RtMDFkR0pSUTJkalFsWm5NMjFLTDA5elREaFhZMDVuUlcwM0wzRjNjMnhDZVRKdFN3cHVlR0Z6Tnpsc2NYZG9UMjFGV0VGUmMwbFZkakpuWlV0UVNrRkhVQzlpYTJwcmQwMXZhQzl2ZFdkclUxZE1Wek12WlZOdk5YSndkVmxuV0daTFVIQjRDakpRYTFGbWRVY3ZOSFZvZHpsa1l6Wk5aSGRTTWxwNVlYTXdVVzlrUWt0d01HaFFjbk4wY2sxMVR6WnhTVFEzWWtoRFJtSkllbmxuUVZOaUwzWnNiallLUWpORlJHbElRelUzT0dFMWFVTlhibTFFWW5CeU1EZ3lRa3QwTUVwT1NVWnhObVJ0VjBKUE0xQm9ZbWx6Vm5WaWFDOXBVRFpRUTFWWmRESXJkWGh6TXdwclRHSkRhVnB1TUdKdWFrVlJZbE5MYjFKWVpHeDViVlpzUkhod2RDdEpVR3MzTWtwNlpEQjZRbVp6VmtkaFpWbFJXazFKVFhkYWRraFpjRFJzVGsxYUNuQkJURzFUY2s4M2J6Y3hZbVp0T1hKbFQyVnRPR3RMVkVoM1ltSlZiVXh5YWpoa0wzcElWRm8xVGs5UE1XaEhWMWh6VUZOdE5XWmljRmhHYWtwYWRUQUtibWR6WTBac2VWQjJaVVExVGpaSmNGRjBWMnRSYnpGV2FXMWlRMUJpVTJWa2NHOUpNVVp3WWxWdE9FVTRWME5ST0ZnMVlVMTJTRVpwTUM5S1VEVkZXZ3BOYkhKRGR6QldhMG9yTWpkQ1JrSkhlbnB1YkZsTVdEZEVVVGw1VmxVemVFOHpUMkZwVmtSc05ISkNSblpZWTFBd05rbG1jbGxqZUdZeVRrbEZZVFJRQ2tsNWFrOXBZV1ZuYVdSNE5YRkVaV054VjIxNU1rWXpOVmxLZEZCb00xWXZNSE5SU3pkQ2JtRXdieXQyTldscWMycHJOMVUwU1cxR2Nsa3dRMEYzUlVFS1FWRkxRMEZuUVVsWEsyUklWQzlVYkVoVlpIQXpRbTlOWTBocVJUSmhXakJvYkdObWNWcFdkRVJqT0d4alNTc3JaemszVlRCb1MzQm9kVzE2Ym5OQmNRcFhWbTgyVVdJNGRHOWFhMjFtV25OSE5qaHVXbGt4UW5aT09YVm9ibUYxYURoVlJIWlhhV2RCYUhWaVIyaFRUWFJNTTBoaVZHaFJkR2RQVDFweWIxZE1DakJIVDJJNWNsQmpOalZuZWxvemJtdHFhV2hGVFN0RmRVWmplVWhoYmsxVVJVTm9kbk12ZWpad2ExVnJiRnBTUVVONk4ySjZkRkJpTkdKV1dYSlhNazRLY1dnd2NHVlZVWFUxTnpkV1ZHbG1iVlJ0YzBkcVRsUjZWVlpJYlVaNWQwbEJUMWxoYW5STE9HcG5Uemt4YlVZeGRHb3dWbGhvTlZWT1VVSkRRaXRqYlFwc09VSjFkVWhXV1hWMGVrZElXbk5LYVZSSFdrNHdhVGgwYjBWa1pEVk5SbXRpZDJoNGEwZHdjRGhLZFhsVlZUUmFNemN3Y2twdk4yZGxTMlZIWjFoYUNqQlNOR3RSVlU1R1N6TkVUbFJ6VUUxV1luVjFOM0ZMZURoSmFGaDRhMVJPYUd4UWJrVXlkVTVuTVhWME5qTXZjelJxU2s0eWR6WnVZbWhJVWxsclZTc0tkRnBuUWtsalNqVkxTM2RJVWsxMlRFcHhkRkJuTlVacFkyeFFSM1ZWTTNaSlpGZFZSVmRTWjFKc05rVTRhbGRHVUV0UVVFOVhUbTlhT0c5elMwTndad3BMVlhONlNYaG5VemhxZEVka1JubzJURzVTTjJGVE1sVnJiMnByVVhGdlRuUlBURE55TjNORVUxYzRSMVI0UjBwaFprUnVWemx1TlM5MGJUWk9abGRXQ2tGTEt6aHpaRVZsWkhGTWJISkhkVGRJVGpkMFF6QnRlVmhqVVhsbGVrSkRUREJTVTAwNEt6Uk9TbEk1WTBWaU9VaEZkbGRDYVc5cU1VMVZaWEZJYmswS2QwbHVaMDVqZEhkRVNpOWhlakF4V0dORFpqQm5hV2RXV20xNkwzaHdNVVZuVm05VFpUQndWVGQ0WmxOSE5FSlZTbVZ0VVdsTVlqTXhRMVp6Y1dOMlJ3cFhRWFZHUW5Wek5WSlVNVXhJYWtWaFRVaFBaMDVXTURKaGJEbG9MM1E0ZGpSdFdsbGlSVE5FY21sbWRrUkphMkZRVVV0RFFWRkZRU3RaVDNSak9FZFlDbEZNT0RreVdVZFBkR014WVU1RGJUaFZSR0puZFRKTGJpczVlakoxWVhwb1ZXeE9TamhhY1ZWMGMwZEdWa3cyT0ZFcldHSjNLM0prT0hRMGVWTXpjRlFLUWpkM01qRXlaakZUTVhSYU5WcHRiR1pITjBGTE1qVTJOR2xqYzJ4YU5rRkRWMkpLTHpST1dVTjRORUpETlhaTWJYaDJabWQwTlhwaFR6aERSbEJJVVFwd1JuUmhUelpNYlVoTk1tTlZaRTU2UkRkNlJXWXdiRlVyYURaNmFFazFURVp4ZFROQlkxQlJaMHBOUkM5UlNHMDNMMmMyWjFsVVZ6VlpLM1JWYWxwdkNsVlFWVVJTVG5vcllrZG1MMXBpUkZOQlZFVnVla1EwZEUxcVVqWk9VbW95TWtaR1RFZGhhbkJqWjFSdmEyMW9PV3hwUVhJdlpHWXZiRVJTVEUxUlIwVUtPRXRCUlhReWEwcGhhRUZHTDJwTlJFSkhLM1J6T1ZsTFdtTktXRmR6ZFN0clFqTXlSMDVMTVZCdk9VcFZiVmxrVWxGd1FqWXdkRzVzU21aSk5tYzVSZ28xY25sdE5UTnJWVkZYU0RRM2QwdERRVkZGUVhoMldHWk5WVmhGUzNneGVtTTJNV1JUTVM4eUszZG5jU3MwWkU1NGIxWmlWRGN4VG00ek1qRTRlV05LQ2xOVk4ya3hjR2hDUlZCTVZESk5Nazl5WTBOT1dqVnJNR1pTUTNWUlEwRktXbGsxWTFNd01GZEJTMjlIYUU5eE1HSm5XbnB2VFdSR0szQlBOVVJGYTNjS1IycDBTVlpHVG5seEsxWm1WRkl3UTJONFRqQXdVSGxHTTFoUldtdHNTVEk1TTBKWlEzbGtaR2xaTm5OaFExTm9UV3hFTjJ4NlRuTk9TMnBKVm0xbFFRcEZZbmt5Ym5KWlVERkJkR2hMTkdGcU1FTmFlWGhuVDJSTWJHUlZRMVl3UzBKSlJWcHZUV3BQUTI1UFVEWkRaVzlFTnpkdlEwSmlWVUpqYVhRMVVtcElDaTl2YWxKdFZTdDVkREJXYnl0Sk5WRlpNVkF5ZVZrM1NXUXhVMDFKYkVkNmVVaDBSVmt2VTIxUGMyNDNORkZzV0M5elpYSndRVGxOTlV0WWRXZG5kbVVLVlZoV2VVZFdTM1JPWW1WaE1teFZhek5oYW5KcFExVnVlRk5TYmtoQlZIcHdVVkJLY3pkRWNGRjNTME5CVVVKamF6VnhOM0JGZURKWVdEWmFVVkpUZFFwS05qaGpVVFF2TTFGNVZrYzBWMlp4WW5sWGNqVndWVVJqY0hWM05VOVlaMjFTVkdKVFNtMWFjRFpPVDI5amIxQXpjR3hUYml0U1IzSnVTelp2V0haR0NuQm1Ua2t5VTFWd1kyWTBha2g1TjBFd2EwRmphekUxTWtodmF6aEpTVTRyVUVobGRUQjJUazFpV2poVll6SjZiWFJwWkZSc2FGVlFjR3RXYjJONGVHd0tLek5RVVdWR0wzTnhkVVpPVTA5M1lXdFhSMU5CVTIxcVJUZHpia1ZJZHk4clJYY3lhRFJ2YWpWNmJuUTNSbVV2WmxCMVZqQldTVXhHTlRGTE5EWlJVd3B1VGs5S05qTXdMM0V2YkZWTmJ6SmhXSGhaYjNSVllVSktSV2d4UlU1TWN6RjRNV3BzVW14cWNHcFJjMVIzVVc4dlR6UmFSa3hOTm1oSFV6ZHRSMFpDQ2pGUloydE9Ua1ZrZVVWSWRYYzJLeTgyWTJRemFreHFOM2dyU1ZSbE4zQTNjRGRhVVhWRmNVd3plVFYxUjNWQmJuQmtiVW96Ym1wV1JEVklkSFZIVEc0S2FqSTFTa0Z2U1VKQlEyazFSSEJRYUU5alQzaGFXRFJhZWl0NWNtMWlka3c0YWtKR1p6SXZUWFlyU0ZWV01YbzNkVUpCY1hZd1dGZzVZVzlEZHprMllRcE9VelE0T1V0VmRuTnJSM2RLUVZGMFRUa3hRVTFYZDNRNVZXOWpXSGhMU0hWdmJtVkhSWGRyTW1WdVoyNDNkMjlJUlc5a1pVNUZSbkpWY0VaUmExWlpDbm95WWxST2VuTnBhMnhvYzA0eVNXRmlNV3cxY0c1TFF6bHBTbWxVYTNwdVpsQmFZaXRRY0RWb1QxWjJlWGRuUlU4ck1HcG9hREJpVTFNeU0wTm5jRmNLZDJVM1RYZG9OMHR1T1dSVWVXZHdRVXRhTURWQkswaHJTWE5ET0VkVFFXVm5lV1kzV21aVVJFZEhOeTlpVTI4MU5YY3pjbEZ3VVdkdlVGbEhWVUZuWmdwR2RITTFSbU00WlRCdVdua3lVMnhFYW5WTkwxbGtURFZIUVdneFprMXBkbkYyVW0xdGVra3dORVJpVjFGMVJGSTNZakpGWmtZMmFqaFdVM0JxV0ZwbUNsQkVlbEZFU20xeFFqTjBORlF5YlZWb09UUXJWRlJvVEZSREsxSlhSVEJEWjJkRlFrRk1aMHBTZHpONmJqSlFPSFJOV2pKYU1VNWFaM2xCU21WNFltVUtTMWxyYVM5VFlWWjZUVWhMT0dGTU5FOUNPVE5QYWxCWGNXSTBUQzlHS3pabFpVRjNXRE50WkZkT2MwZENRVWhKZDNWRkt5OTBaakZRU1RFdlprbEljQXBhWXpsWWRIbzJURFI0WVdnM1lVb3lTVlJ4VG1wUGRtVjZZVzlsYmxaV1VrNVZOalJKT0cxalRIWmFNbEU0V1RBMlp6bFdPSFJrTjJreVNuVm1lRkpLQ2pKdlQxRklNRlJ0TUVwSFdWVndXVmgxTjBwNWRVVjFlRGh0T1hOcVYzVXZaWGRNVWxkbVNHZzRjVVE0ZFZKcVFpdDNOR295TDJScVYxVnhOR2hsU1VVS1NWQTBXRFJ2WWtOUlFYUk5NbEZWVkN0VlZHOVBMMHBQUm5KTWNIQmxPVmszTVRWd1ZtRlJNbkJpTURoQ2VVVlhOSFI1UjNaRVVUSlZkMEZuWlVwc2RBcFZNM0l6ZW1aT1NWbEpVWGhzY2xwaVFrUXJiSEZtYm5CS1NHVTRWMWhLV0hjMFQyYzBOeTlDVW0xTmFHNUNUbWxQWWpob2IxUndRVVJXVFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAxZWM4NTllZTdiMjQyMjRhOTdiYjk3Njc0ZTFhYzM0OWIxYjZiYzRkNDI2OGUyOTc5M2RhMWExZjlkMWEyZGNkMWU0NmU2ODcxYmEyZmJhYjg1ZmQ5MWQ1Nzg2YTFmODNhNTExZDBkNThjMGY5MDI2YWQxMGJmYjc1NzM0OTFkMwo=\"\n \ }\n ]\n }" headers: cache-control: @@ -591,7 +739,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:09 GMT + - Tue, 10 May 2022 04:36:47 GMT expires: - '-1' pragma: @@ -625,10 +773,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -638,20 +786,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '929' + - '922' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:09 GMT + - Tue, 10 May 2022 04:36:48 GMT expires: - '-1' pragma: @@ -673,8 +821,8 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -687,16 +835,16 @@ interactions: Connection: - keep-alive Content-Length: - - '540' + - '533' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -706,23 +854,23 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/a05b8770-e27b-4e07-82e2-aa831da1bb47?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47c701a0-8980-4359-a0b6-afa9fed088a6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1002' + - '995' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:11 GMT + - Tue, 10 May 2022 04:36:50 GMT expires: - '-1' pragma: @@ -756,24 +904,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a05b8770-e27b-4e07-82e2-aa831da1bb47?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47c701a0-8980-4359-a0b6-afa9fed088a6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70875ba0-7be2-074e-82e2-aa831da1bb47\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:28:11.7466666Z\",\n \"endTime\": - \"2022-04-14T05:28:17.7345416Z\"\n }" + string: "{\n \"name\": \"a001c747-8089-5943-a0b6-afa9fed088a6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:36:50.51Z\",\n \"endTime\": + \"2022-05-10T04:36:58.0258056Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:41 GMT + - Tue, 10 May 2022 04:37:20 GMT expires: - '-1' pragma: @@ -805,10 +953,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -818,21 +966,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1003' + - '996' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:42 GMT + - Tue, 10 May 2022 04:37:21 GMT expires: - '-1' pragma: @@ -864,10 +1012,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -877,21 +1025,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1092' + - '1085' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:42 GMT + - Tue, 10 May 2022 04:37:22 GMT expires: - '-1' pragma: @@ -923,10 +1071,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -936,21 +1084,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1003' + - '996' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:42 GMT + - Tue, 10 May 2022 04:37:22 GMT expires: - '-1' pragma: @@ -972,8 +1120,8 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -986,16 +1134,16 @@ interactions: Connection: - keep-alive Content-Length: - - '522' + - '515' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1005,22 +1153,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/4c34c93a-2b52-46c1-80d8-26b971ff2616?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44df57f9-b419-40e7-a0b9-77ce4c7e83c1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '954' + - '947' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:44 GMT + - Tue, 10 May 2022 04:37:24 GMT expires: - '-1' pragma: @@ -1036,7 +1184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' status: code: 200 message: OK @@ -1054,15 +1202,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c34c93a-2b52-46c1-80d8-26b971ff2616?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44df57f9-b419-40e7-a0b9-77ce4c7e83c1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ac9344c-522b-c146-80d8-26b971ff2616\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:28:44.7666666Z\",\n \"endTime\": - \"2022-04-14T05:29:00.1712453Z\"\n }" + string: "{\n \"name\": \"f957df44-19b4-e740-a0b9-77ce4c7e83c1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:37:25.3233333Z\",\n \"endTime\": + \"2022-05-10T04:37:34.1493767Z\"\n }" headers: cache-control: - no-cache @@ -1071,7 +1219,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:14 GMT + - Tue, 10 May 2022 04:37:54 GMT expires: - '-1' pragma: @@ -1103,10 +1251,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1116,20 +1264,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '955' + - '948' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:14 GMT + - Tue, 10 May 2022 04:37:55 GMT expires: - '-1' pragma: @@ -1161,10 +1309,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1174,20 +1322,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '955' + - '948' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:14 GMT + - Tue, 10 May 2022 04:37:56 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml index ac0f17f50a8..066c61aa57a 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml @@ -8,12 +8,14 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,38 +26,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1400' + - '1533' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-96a72579.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-96a72579.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-df21f82c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-df21f82c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -67,21 +69,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3000' + - '3179' content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:07 GMT + - Tue, 10 May 2022 04:33:51 GMT expires: - '-1' pragma: @@ -93,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' status: code: 201 message: Created @@ -111,14 +115,62 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:34:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache @@ -127,7 +179,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:20:37 GMT + - Tue, 10 May 2022 04:34:51 GMT expires: - '-1' pragma: @@ -159,14 +211,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +227,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:07 GMT + - Tue, 10 May 2022 04:35:20 GMT expires: - '-1' pragma: @@ -207,14 +259,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +275,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:21:37 GMT + - Tue, 10 May 2022 04:35:51 GMT expires: - '-1' pragma: @@ -255,14 +307,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:07 GMT + - Tue, 10 May 2022 04:36:20 GMT expires: - '-1' pragma: @@ -303,14 +355,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +371,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:22:38 GMT + - Tue, 10 May 2022 04:36:51 GMT expires: - '-1' pragma: @@ -351,24 +403,72 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b894bfab-511f-420c-85f2-4049aab03f5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abbf94b8-1f51-0c42-85f2-4049aab03f5f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:20:07.6466666Z\",\n \"endTime\": - \"2022-04-14T05:22:42.125329Z\"\n }" + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:37: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 + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb5436e6-6cdc-49e0-bbe3-bb322af794a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e63654eb-dc6c-e049-bbe3-bb322af794a5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:33:51.2433333Z\",\n \"endTime\": + \"2022-05-10T04:37:22.6965008Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:07 GMT + - Tue, 10 May 2022 04:37:51 GMT expires: - '-1' pragma: @@ -400,39 +500,39 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-96a72579.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-96a72579.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-df21f82c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-df21f82c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/86b827c5-5425-4844-915e-302830bbb48e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dd87dc8a-7059-467d-a8b5-35444429382a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -450,11 +550,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:08 GMT + - Tue, 10 May 2022 04:37:52 GMT expires: - '-1' pragma: @@ -486,39 +586,39 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-96a72579.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-96a72579.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-df21f82c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-df21f82c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/86b827c5-5425-4844-915e-302830bbb48e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dd87dc8a-7059-467d-a8b5-35444429382a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -536,11 +636,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:08 GMT + - Tue, 10 May 2022 04:37:52 GMT expires: - '-1' pragma: @@ -574,14 +674,14 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2022-04-02-preview response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCVFFsbDFUV0l5WXpsR1NHbGpOa2xKTkV4RlNHdDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BKZDA1RVJUQk5SRlY0VFVSTmVWZG9aMUJOYWtFeFRXcEJNRTFVVVhkT1ZFbDNUWHBLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUTBUeklyU1VKT01sUjFUa2hWYlZWWFIwUk1aVEZzVUVSMVNGVXJiVGhzUWtoQlZEWnZaVVZ1Y2pFeFpHVnRSalpTYjNOcGJIbGtWRXhFTDJkNGRXWUtkR0p5TUd0QlNHTnBUR2RXTjNBNFUyVlpkWEpxU0hNeU1HeG9XVXB4WVc4NFZUazFRVU50U25SUk1uTndVWFEwVjNCbFRITXJhV2x1WjBvMk0wUmpWd3BNVFhwbE1rVkhVVmxwVkZSMlIzTjRVeXQwV2xSdWNGaE1hV1poTDFaMGVqUjRkRkJyYW5GcVRqSlFlQ3RaUjI0elMyeHZZMG81UlVOeVYxaE9kMWRIQ21WR2FUaHZNMUowWVM5MU5UaHlSSEp2VWk5MU5VdHBTR2szZGpaNmRtaFVjREZWU1VSQk1rMHZMMjl5YkRCSVRqWnhlVXBvVUhSVFFucG9LMDlsVEZnS1VVbHJOMnRwY1U1NFIxSk5kRkJPV0ZGTGFXRkRORVpCV0RCWVF6QlhlREp4VFhocFIzVTJiRlZLUkRrd1FVSktjVkpyYWsxUGJYZDJOREZzTHpRemFRcEtSM0p1ZFN0ckt6ZGpNMHAzVG5CdldrUlpOVXRuU1VoUlREWkxaMUZrY0RORlpYVm5UM0J6YWxjNGNFc3JXWHB2UW0xeU5uZHplakJaWlRScUsxRjFDbVpTTW5OckwwUm1UVEZuWms0ek4zVmpPVVJpUkZwSVJWcDZSbWwzYzNKNFMxQnhZbFpOTnk5QlZVMW5XbE5wUlVwd2MwWldlR0ZWY1ZwNlMwRkRka1lLWlc5TlIxTnJiVWR4UTNWb05tNWpVMHRoTjBaSGR5czRiSG9yWVhOWUswbFpWVmRrUTFkMmVscGxaazlUZDJsb2JpdFZabGxEU1ZreVVIY3hkMUpaUndwaGJXcFdXbU5JYlRoeE5sUnVkVzVQYUhwcVRFVnlVMlZSYjJwdlZYWkZSbGxNZVcxcU9FdG1SVGMxVkc5VmFqRTFNRVl4WWpaRFlUbHZiVFJTZEVNNENqVmpRbUpzWTB0Q1MyOXJWa2xET0VWb05HZFFSMk5ZWjJwNWFuSTVSa0ZuUldKdFJFSlZhMWgxWVhJMlJpdHZiVFJJTjA1U2VuUTRRbXMyTHk5RmQwc0tia2w0TURCS2RWZEVaRFpvTVhOd1N6SnNTRk14TjNaVlJFcFRjMXByZEdKQmVtd3ZRbUZzT1ZOVFJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1EwdzBWR0p1VDIwMVFtTjNRelJ3Q25wemEwZGhSbXROU21oMU4wMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFscEhhWEZqU0Vsd2NrRjRlbTAwV1hGM2NrOUZhbmxJT0cwS1ZHeE1jVXd5ZDA5cFFXaEpjR0pVVFVkbldVWk9VRXhyVTFsUVkwNDFkU3N5TVZaWU1rZzFXaTlEUmpNM04xQnRWbEF2YlVZM1pUaFJkVlIxU1VWWlpRcE5lVlo0WVZaWGN6WndWelpDTjJSaFVYTXhTUzlWZVdwRFRHdDNkVXBGV0dOS1RWQnNaVGxIUWtoa1YxaHJZMVJGUVZwUlQybHBTMGszVEZWRlRXRk9DamhVY0RWUVkzUmxkMUJXVkdsMmJFZHBiRzFJUld0bU5uazNiaTlTV2xoeVNucElaRE5DYjBSRWRXSXhOa3c0TmpNMGNIWXdOVFI2U1ZWS1lsRnlZM0lLWmtsYWVFMDBTMFJxVkVWVU1ITkJVekZKUVRaelozUlNabGxVU0ZVMVJFeFJZbmQ0U2xoUGRXdFBVamhvVUhWU2J5OUNWR1ZUYXpoTGNXTXpRalJJU1FwcVRXaEhZa0puVVdJMk1XSllPSEF4YjJkRFFUWmhaMU5rWXpsUGRHeHRjbWhZYms1ME9UVk1Ua1pJZFRsdE1Xd3lhV042V2xCdlZWcFdUMVptVVdSaENtczRSalEwYmpOd01DczBXWFJQWTJWdWVGa3lXa2ROWTJKYVlraEdkRUZTY1ZkaFpXcExNbTlQWlZCblZYbDFRbk15ZVdwdVEyNXdkQ3RyVjFwekwyY0tNRGRKY201blVWUmxLMHhtYlhad2EzVTJUMWhUY0VzMlRXNTZiR3RpT0VGc1NHOXRTMVpwVWpObVNGbENkUzlaUlU1VVdrY3hSRmc0WlhCV0szQkViUXBTYUU5cFIwdGtXazh4Ylhsbk5DOXRTRVUzZDFGek1rTjVSMFZIYTJSdmNXbDJSWFJWVDAxblpVSnZSVkZyYW5sUlkxaEtkMnR5VmxJMVZXWTFXRkpwQ2xwWFVsTnBXVzVYYTJ0Q2MyY3dSWFJJWjBVclIyeGhValZvUVhsNlZuWTBUMmhRWTBGQ2VYUkRiVGQyTjJGb1ZXbEdXSGhrU25ObVJXdDZXWG93T1RFS1FuSlJPRkpUZWxWSGQzQnlZWEptTVdaTFJXVkxNMWcwV1hkSk5tVkJlbkIzV1cxVFpqSllVamxJVEhFM2RsVnlVRUZPYjJaMFlua3hORFpGZEZSeVJncGhjbWRIYlZOcFZuQXlhVFpZVDNCalYyYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zNnIzdW14ay05NmE3MjU3OS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHlhZ2l6eApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHlhZ2l6eAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDJ3MzRqanV6YnpfY2xpYWtzdGVzdHlhZ2l6eAogIG5hbWU6IGNsaWFrc3Rlc3R5YWdpengKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0eWFnaXp4CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDJ3MzRqanV6YnpfY2xpYWtzdGVzdHlhZ2l6eAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVbFhhbkEzVDFkRlNsTk9NMW80SzBRMVNqbE5USE4zUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwSmQwNUVSVEJOUkZWNFRVUk5lVmRvWTA1TmFsRjNUa1JGTUUxRVZYbE5SRTE1VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJlbXRCTDBsT1kybEdVV2xYTnpSaFRVUkdka01LU0UxTEszTXliRk5GYWpSMWIwWXZiSEJGYms4MUswNVNVbEZQWVhKTlRVOW9OMmN2VFhOd1NUVm5aa0p6U1ZkRmJEaHNNMUJIT0VORFpIcE5ja1YyYkFwbE5HcEhRVXgyVW1oaFNrMU9TRFl4VEdWaGJVSnphbVZwUW01Q01XazFjVTloVGtSR016WnhaME5hTW5OMGVuUnhZVU4zUWpCSk1IWnVURzVrY0dSQ0NuVTFTRE5OVEZWMVRqWjNUVFpFVFhCMFUwTnljazVxT1ZGVk1WTnZURVZFV0dvd1R6Um1jelozT0N0eGVsRjRZMFkyYUdGbVdrRm9MMDF1Y0RCV2VUTUtjak15ZUdoNlpGQllZV2hZTWxGb1NrRnFWbEY0Wm1kQ01FeFZiSGhNTlVaMGNEazJWblJVSzBneFNFeEZXRmh5U0RCb1VGWm1aMWR3UWs1YWVHaFpVQXBRTkVoM01XOUNUR294UTI5c1ppOTBjRVJSVlN0WE1TOTNNRUZaT1N0R2VHWTBlRXBKWVVGM2FHZEhablpDV1RsbWVqUXlZM1JyTHl0YU56QlZkVXh5Q204ME5uZzVOa3hhZG5Wa1pHWTJTVXhUWTNwc0szZEVLMkprWVV0S1FqZFJiMEZuWkVreVkxaEpjblpSVDNaek9YQmlSMVk0U0VJdlVVRXdVM1UwTm5nS2IzazNSbmRzVlZKcEswWkdZbGt4VFV0dlREaHBabGxJUlZCaU1IaHlVakJTWWtobWRqWnRhVmc1TVdKVVIzVXliemN6YTJScFdVUlpNVEZPVnpoUmNRcE5XblU0Y3pWWFRUbGtUbmRKZURVMlRrUkVSbmR2YW14VWNYSnlWazlETm1kek5IaENRV1U1ZEZwaFlubGpSSE5QUm10Vk5FOXhTVXMwY0RWd1JtTjFDak5EYW1KQ015dDNPV2N6VWtkdVZGZHBibU5OZVZSRWNFZDZNR05XYWtsaGNGQnBPSHB3ZFZaSWNrUjVNMDU1ZURSU2FVSkRlVlZqYXpRMlRVTmtVR29LTmpOUVRHMUdPVXg0VmswM1lscGlRa0Z2VG5rNFYxRnVhMDkyY2tveE1YaDRWekp3UTNacmFEaEJhWEZRU0RsSkswaHZUREYyUm14bldIcG1UakZMVEFvNFRXUldhalZwV25kdFREaDRXR0pzYTJOQkwxUXZNRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZTWFpvVG5Wak5tSUthMFo2UVV4cGJrOTVVVnB2VjFGM2JVYzNjM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSekJNVEVwQmEyeFhSMlV2ZFZBdldWUkVid3BxT0haSWMxbDFkRmh5YWxsd2JrNTZkMWt2VkZsdWNtdHBVVlJLWlZKMmFUTkxSRWh2UVdSWlZXbHhOSEpSVEZGQmNEZ3ljVFF2UjI5b1UzRTRVWHAzQ2tKRWNrTTBTMFF6VlhZd1JVb3JhUzlVZVVsc1UyeERjRFZrTm5OTmIzWnVjbXhaUkdobllUQjNZazVwU25VMVpEbHZibVpFVFRCUGJWRTRSR1p2YzBNS01EQm5NME53U2pGRFRuSnNkRFl6UlN0RE9VSXdkM05WZEZwMmFtWk9iVU5DVVVKTWJFTlJZV0pPYVhGbVFrMHdWa0V5VGxOUGVIcFlPRXhyYlZsVFpBb3hjVFZsY2tWWFlrRlpjbWRsUjB4elIwWnpTVzE0Uld4bE9GUmhWRFo2VlVKNlJYcHBUemhYYmtSMWIwUklZWFZoZDBsemNHZGxWM2cwT1dGVFJFTlFDbmRZZGtWdFkzQlRiRmxWWTFaT2VYaFZWRUk0YTJFck4zZzVkV1UxUlRkTWJHbEZibEUzWjB0TE1VTnFXVFp2UVRaaFRuTk9ZMUJWVVV0SlFWUnhWbTRLZWtseVNXWm5XVGR0T1hRdmNuSkJkblEyYTJWalNtMVJUakZ0UVZoNFlUTmtOMWRNSzBkRk5ITklRbFoxTHpZeWNYaFdOM0ZCZHpWRFZuWlNVMUJoTUFwck56VkpUVGxVTlU0eFRXTlNUWEpKZFdjNVFtZFVTVzVZVnpWNVdWbFRWMlZIUkhGNlMwZEpNSGxMU1c1cWNXRlljVkZwU0dNeGRVWjJkMDU1YXk4d0NrOVVSVFYyT0ZSR2JFUTJZbGN2V2xCeVFUSmlaMVF3UWtrNGRUSTVOMXBxWlRoRWNsSktTMGQxYlVOVVVWaDJVU3RVUkhCSlVtWkpTMHROWlVFM1dtNEtRM05DVTBWMVpDdHNkUzlVTUdselMwcFhPVWQzTnk5blpWUTFkME5hWlZCc2FYUkNWazVwTDA1bGREQk9LMlk0TUZSVVJHUndXWE4zV0ZJeVlUUk1XUXA2V2t0SlIyYzRaRTlyV0RsbldtRlJVMHRoVGpsSWR6RkZibkZWVVdSaVFXNVRMM0YxU1VnMU1rRjNZbWxEV0dvd1MzSmlTamR5V2xoVFZWVnZjMVpvQ2pObmJXeEllREZVU1d4RVJqSk9jVkYyYmpjcmNEY3ZiQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJlbXRCTDBsT1kybEdVV2xYTnpSaFRVUkdka05JVFVzcmN6SnNVMFZxTkhWdlJpOXNjRVZ1VHpVclRsSlNVVTloQ25KTlRVOW9OMmN2VFhOd1NUVm5aa0p6U1ZkRmJEaHNNMUJIT0VORFpIcE5ja1YyYkdVMGFrZEJUSFpTYUdGS1RVNUlOakZNWldGdFFuTnFaV2xDYmtJS01XazFjVTloVGtSR016WnhaME5hTW5OMGVuUnhZVU4zUWpCSk1IWnVURzVrY0dSQ2RUVklNMDFNVlhWT05uZE5Oa1JOY0hSVFEzSnlUbW81VVZVeFV3cHZURVZFV0dvd1R6Um1jelozT0N0eGVsRjRZMFkyYUdGbVdrRm9MMDF1Y0RCV2VUTnlNeko0YUhwa1VGaGhhRmd5VVdoS1FXcFdVWGhtWjBJd1RGVnNDbmhNTlVaMGNEazJWblJVSzBneFNFeEZXRmh5U0RCb1VGWm1aMWR3UWs1YWVHaFpVRkEwU0hjeGIwSk1hakZEYjJ4bUwzUndSRkZWSzFjeEwzY3dRVmtLT1N0R2VHWTBlRXBKWVVGM2FHZEhablpDV1RsbWVqUXlZM1JyTHl0YU56QlZkVXh5YnpRMmVEazJURnAyZFdSa1pqWkpURk5qZW13cmQwUXJZbVJoU3dwS1FqZFJiMEZuWkVreVkxaEpjblpSVDNaek9YQmlSMVk0U0VJdlVVRXdVM1UwTm5odmVUZEdkMnhWVW1rclJrWmlXVEZOUzI5TU9HbG1XVWhGVUdJd0NuaHlVakJTWWtobWRqWnRhVmc1TVdKVVIzVXliemN6YTJScFdVUlpNVEZPVnpoUmNVMWFkVGh6TlZkTk9XUk9kMGw0TlRaT1JFUkdkMjlxYkZSeGNuSUtWazlETm1kek5IaENRV1U1ZEZwaFlubGpSSE5QUm10Vk5FOXhTVXMwY0RWd1JtTjFNME5xWWtJekszYzVaek5TUjI1VVYybHVZMDE1VkVSd1Izb3dZd3BXYWtsaGNGQnBPSHB3ZFZaSWNrUjVNMDU1ZURSU2FVSkRlVlZqYXpRMlRVTmtVR28yTTFCTWJVWTVUSGhXVFRkaVdtSkNRVzlPZVRoWFVXNXJUM1p5Q2tveE1YaDRWekp3UTNacmFEaEJhWEZRU0RsSkswaHZUREYyUm14bldIcG1UakZMVERoTlpGWnFOV2xhZDIxTU9IaFlZbXhyWTBFdlZDOHdRMEYzUlVFS1FWRkxRMEZuUlVGd1QydHVNRXRzVkZCblFXeE9lRmRqYVhoRlprUjNTVVJ0Y3pWbFlXVnVRVkJGYTFKQk5rSnJVMGhOZDJWMk9HSjNTVVZvT0VKRE5BcHlNMHRuWjFKVE5HOU9lbEpJVGtKblpucHBMMG8wVjJSUVZFcGxTbUl4UW01RWNWRnNPRzlwU20xTlpHMU1jbmRETUVzeU9EVnRjM0pCVm0xMEwyczNDbGgxUkZCclZFZDJMMDl0TjA5alRXRnVSMDF4WVhoRVV6QTNZWHBRZW1aQ2NuWmtaa2xtU2pKVE16aEdTRk5qYmxCVlozVnFkbFV4VjFCcVVVZGFlVElLWkhGbU5qTTJMeTlCU0RabFlpdG5WRzF2ZDFKTlRqazVSR2RMVm1WRlRVaElTR1F3UWxFemFWWTRNVkpIZFhadlZISkplazlXTlhRcldHRjBjRkY1TUFwMFFrMVFjMXByYW5ocE1VUjBlbkZKTDA1TmJIWXdSV1J4WXpObWJWVmlZbVUxWTFCVk1rMUtkVkV6ZFZKRWJrVm1Nemd6UW1KWlRtZE1Na2xyTlZKdENuTlFWVEZrZVVJM1UwNWtOMmx0T0VNclEyVlFRMHBqTlVGalJXYzJURUkwZFVScE5GQldTVGxtZFdrMU16Sk1VMk0yVEVwWFFWUldla3N5TlRoT1pqSUtjR04xY1dGSVVVUkJjQzlJYW5wa2VHSmFVVXhFYjBSd1ZXVldPWGhCU1dvNE1saE1NMWx0Y25scmFHcG1WamhLU21Sb1NucHdVMXBaYTJzeFRFVkNlZ3B3YlN0NVJuQjBiRXR3Um1WclUwUndhMnBHZVhScGNrZGFXamhHVVUxR1ZWQmxTRTA1Y0daM1JYTlNWMkY0U2xwRk1WRjVhRmRWVm14VVdrRm5iR3hDQ205RE1IZHNaemRGZFVoak9GQkNia1I2YlV4bGVYZFlSRVZvZUVodmNXSk1hMkZyZW01c1RFOVZTVEpEUlVJeVFVNUlSMGwwY0haeE9FNUpNbTlxT0VZS1JURnVkV3M0UVZGbE1tZDNTekEzY25aME15dGllVVl6Y1RjdlIydzFlSEZZTmpCVE1qbG5iRlJJTTB0UlF6RlJUa1pRU1hRNE4zaERLM1k1TTNoS1dRcEpkblJMZEM4MVNXOUhLM0pXZVZRMFlsaGxSR1ZzWkdGWFkwNTRRME4xY2tsMFZIZG5SMHBrUlZWcFdrOUdVRk54V0RCRFoyZEZRa0ZRWWpSbGQwNUNDbXhQT0RoUU5FbHJaV1ZZVUVOVFMxTXhlVlptZVdOa2FsVmtlVk5RU2xKeVNGaEZkMGhWZVc5WFJVUjBkekExZGpCb1ZDdG9TMnhqYkdSSlpsbEJNVm9LT1hnNGNXUXdXRkozS3pCdVQzUXpORmR2ZW04Mk5uZFBZVk14UzBreFdrTm1RWGxpWkZWelRUTkpjVlZEYWs5blpHZHdlR000WkV0dVJFcGljRWhUUWdvNWIyOVRRV3cwYm5Cd2VWZEJORVU1VEVsNlNXNUpkMlV2ZVRseE1rSjNjVkp1ZEVSTFJUSjBLemQ1TURWaVoyaEdha2R4VDFOTlEzaEpNblpNUjFWa0NsbFNjVkJzTmxRd2VqaEtVamRUTWtsTmFtdDRhV0ZQVUU1T05Vb3JPWE5yVVhONmMwTk9PSGxzVmxoeU5FcFNOVFJvY0dKSmN5OUxkRkZLWVRSdWJ6a0tObE5qVG14TlQwSjBkRUZYZUZaVmVFRXhNVmhUTjBkMmEwc3dTWEJ2VFdoVldXRjZVMXAwYXpGU1l6TkpNRlZWTUhOSEwwc3JObkJ2VkZKVk1sWkZSQW92VFcxMlpsSm5iUzlsVFc1a2NFMURaMmRGUWtGT1dFdHdjRms1TUZkbFEwZFNWMVJNZFd0bFRFVmpUa1ZTY2s4Mk5HMDJiUzlPTkdKU00wTmtXRUpUQ2pVeVpqWm1VelJwVm5wQ2RVWnBTbmxNTmxKV1duTnFialJVSzBWdk5ub3hjbTlpUkhod2FERm9SREUxSzJsT04xVnJObHBWVXpKcWNtMUJhMlExTnpFS1dGaENOWE5aTUVkMVdTdHNOVXRWVTI1SGMxZzRPV1kwVlhsWU5VaENNbTV1Um1oV09VMWtPSGh4VUZwU1kzYzBORkJtVldoT2REaE5aRnBqUjJOc1V3cFNaM1JyUVRWSGFEUTNVbVZSUldkNGVTOWxaV05NWVRacmFXWXlSRXRxTlc5V2N5ODBURlIxTDB0cGFUVlpjMjlQUkdnellqRkNSMDlxZGpaa04yVm5DbWR6VFdsS2VqaEVabFUwZUZSRFpsRlRSMFpDY201UU5HdHlhalJrVWpaMlZtaHphMWxLV2psb2MydE1RVlpsTkZZNGRGQlFNVWRMYWxwaVRYTm9jR1lLU0V0RmRqTlBXR1o0YlVWMGFsZFVVSFJ3WTJsQ1psVnBXbXB2Wm5oNU1YWlZNalp3TWl0VVVrdFRPRU5uWjBWQlFXOUhTVGxuU2k5WFYwbGhTSFEzZUFvMFlsRldSM0ZYTUhsNWRFdHdPWGhLU1RGNlZXZHZhMGgwYms1UWFVMTVXV2RMWjI4clF6TkpVM1pCSzA1c01qZEpNMDkzUkU1TGFEUkZORlpCWWpsakNrcHdZbXRWVVZwS1NFODNjMGhWV0ZWTFYwbzRUVEEzWmxwV01XRmtiRllyUlRKWWJrdEthbnBQWVROdVFqbHRiemxvV0ZvclJtbDBVVXc1YjBOTU5rMEtVVlZEUVdKd2NFcFVia0p0Y210R1QxRTFVRzg1TTJkNVYwOVFXV281YXpWSFlsRlpUa3ROV2xRME1ucHZUR2hTWlVWTFZIZzNOMmhyYkhoemNFZzNZZ3BqVGxKV0wwMVdTMEpUZVUxblpqRmtRWFpvY2s1MFJVdFpTSFozY0hoemFsTnphbTA0V0hFdlNWcGtWa3BvYVdaa05VOXRaM0ZyU1V0YU5VbHhVMk41Q25wTEt5dGtkSFpXWkdWblFqSTFOakZqUW5kTVdFZzVSa1JaU0dGUFJuQjNhM2hwTjBsbFRsSk9RMmRXWTFGdFJtMXFkRmRNVXpGSFRHMUhObVZxYkVRS1JVVkJRbEYzUzBOQlVVVkJiVmR3Y2poelNqTnZOVk5NVmxvd2FDczJNVzlVY2tKRmVIWXdXSEoxVlZob2FtRjZOM0puWkhWRVdERXdkbkpCYlRkMVR3b3pOMVZRT0hwWlNHeERRMjkxY1VWVVZscGFhMDFtYVRObVowODVXSEZvZERsblQzcERXVlV3WjJsNWNGRldkMFpDVURoSFZFTTFPVVl2Y0hJckszbEpDbVZzYlhOWmRubG5MMGxVWVhWbE9UaEZNMHhaZUhwelFrTmhOMlJGWXpSeVlWZGlRVWhLV0hkamEyVjRPSGxOUkZSSVZWcEhRWGRRVFZwMFlYRkZXVWtLT1dWVWQzTm9NM2cxVlZwM1ZXVkJLMmMyYVdkWGVESlFkV05DTUVOelN6UXdibUpoZVN0d1dIUmpWMWhRYmpZeWVWWlhjVlpVTkRoME4xTndabmxIVFFvMlVFTmtWM0pEZGxWQlRtNUpaR1ZPZVcxcFdTdDVWVTVaUkhKU2FWRjVXa1JYYmpGVk4wbzBXbVV2TDFkM09WaElXa1JWWldaSmIzaEZOWEJqVW1kTkNqZHhNVmR0Y2tsdWNpOXdPVlptVTFOalZVWmxiQ3M0WTJGMmR5OVVUWEl2YUhkTFEwRlJRa1JWYVhaeWJDdHNWVlZCV2l0NFdXRm1RVkZXYlZkMGRua0thSEpHWWs1aE5rRmFhbU0yYWt0S1dVSlFlVVZYZUVkMFQwUlNSRTFVVFVWb0wzTTRSVUp4V2xjM1ZYTllkbTVWZUdwSFZrdG1LelZTYjI1RFlYWlhhZ3BoTkhGME5tSnBhM1pDU3pOVlYzTmpObEZpTm1oWVkzTlNheTlHWjBwM2FFTnBZeXM0V1hGSVdWRlFVM1I2T0U5RFRFMW9SMUZ5Y21OSVQzWTFXVTFMQ2tWTk4wWmxaREZXT1cxYVkxZGtRVmx4ZEZNNFFYcFhiVzVCV1RGSmFsUkJRa2hUZDJ0emVTdEdWMEpCWjFKck5XdHRZVXBMUkd4a1QyTnFVREJCT1dNS01XbFVkVTgzWkVNNVpHZFVZbmMyTTFSaVkybFBlV1ZaSzFOUk5tTlRPR2xuUkdodllVUlBVakozUVVoU1JFRkRibTQxTHpkb01FZHZTbmROVkM4eFNRcEhURlVyY25kMlNIWnlkMGRvT1UxS1kxcHBSbXBrZERKcldWcEViRzVsY2xSblNtcGxhbFZVUm05TGFVWnFhamsxYmtoM2FIVmtWbEpOTlZvS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA0ZjNiNmU1ZWE4ZmI0MzIzNzY0OGU0MGE3YjExMTkyYmU2YmQxZjcyZjhhNjlhNDk5NjNjMTc1MmRlMjFjYjUwM2I4NTMzZmJkNjEzMzAyOWQ0OTcyNTU4MmE5NGZjZjNiMmI5MjBhYTdhOTRkYzI0NjQwZGRjNjU3Njk0NDk1ZQo=\"\n + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUjB0MlRXa3dURXh5Wm1kelNqRjFSemhoY1ZkS1ZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUV3BCTVUxVVFYZE9SRWt3VFVSb1lVZEJPSGxOUkZWNVRVUlZlRTFFUVRCTmVsRjNUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSaENrVkJPRGRQTDFCeVRIVTJOR0pTS3pKSVNGZFhLMU4xT1M5cVFWb3JjV3h3TmtOb09HUTJPRzFsYVRWTVJ6aGlORnA2Y0VveFdGUlNURFpYYWxsdGF6WUtWVXRYYzFSTFRsaFVkV3Q0U2xwUWJrbG1Za2swYUhKT04zZHpSMFJ2TDFaT2NGVkljMnB1TW05U2NuRXdUekp3Wm1weFdHdG9kRVZ6YjFVM1V6ZGlTQW94UzJFNGVsTXpiamRWZDNrM0swWk9OVFU0V0hSTE5rWm9VREpDUlZOWWExZDZXbUpKZVU1TUwxcE5lVGt5ZVVaMVZsUkhTMnhIU25oWmFsbzNVMWRMQ2pRNFFsSm5Ua0p2UTJsMU1YZGhhMHROWkVOWVdFeHpRVXRUYVVZemVHaGliMlpMTlhWdlJIUmhLMFJxWWpKS1dtNW5XVE5DU0VGeVMwaDFSRUZIZGtzS1ZreHhZakJ1T1RCTU1sZDJPV1Z6UzBvNVltaE5hRkZMUlZOdWFWZGhlRTB5ZGtGb04zUmxLMG80VlRCU1NGcFFaRmh5VkVWUVkxUllVV0ZPWlM5TGVnbzFjVlJIUWxoVk5FeHNWSFZPYTFoWWExVlhhMlZyVlVKdmNXOUpha1psYjFCcVRFWmhSRVZTVkRrek5UUmFNVzFzVm1Fdldpc3ZOM1JNZERCVlIwdDJDbk5qUVZNNFJsRk1RMmRrZWs1allsSXpNMVI2YVhZMVdHc3hNa2xYVjJ0WE1sZEJkMmt2ZVZORVEyZHJhemMxWjNwc0wyYzVMM05FTnpOM1lsSnBlVmtLWVRKM2NrOWlUVVY2Um1oQ1JtcG1jWEF4VGl0VU5Hd3JXVGxLWmpaNmQxa3hjbmxQUW1GaGExTk1NbmRaUmxGQmNUTkpSWE4yU1hkUVVTdG9NRVpxVEFwb2NVWjFjR2RGY2tFNE9VZFlVa3R0TUZSeWNYaElaSGN3VDBSNlV6UkpZVmxpUjB3elpURTBka3Q2VG14NmVGWmhaRXhKU0hSNFFqaFRRMG8wVUZoWUNsZEpRV052V21Wb1RFcEdiVE5VTjFacldXaFNWR05qUmxKak9WRjZVMHhTYTNKRGRUa3dhWGRHUlhCWEt6RXlXRGRRU0dwcVYxTnNhbFJKV0ZkR01FVUtZa2hSVDJzd1VWVm1NREJETURWNFYydENaa2gwU2paTU1XdE9ZVE5YZHpoMllsVkNTRTFwUkU5UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWcWJGSmFSbWRGZURoQk9HNXBjVzFqQ2xSNmNHNXFNeXR6TDNjMGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTGJrVXpRWGR5V2xkVWVWSnFNVEF5WVd3MGEyOWpPVzlWT0ZNS1lrTkdOMnhJTDFkUGVFUXZUMjlZU2xOdmNtWTRWemN2VERKRk1pc3lTRkZCTlhOWVUycFNNMWhhWVd3Mk0wdGtaa0pVUkdZNFluUXJlRGxKVDJaclNRcGpNR1pNTWtkTVdFVjZZekJuWVVoWE4wRnJRMjR6ZVRWWlJFTXJNRGhwZEVrNVNqWnpkMFZ5VDNOa2RqQkVLM2xzWnpCR1RUTk9jRlFyYVRSQ05WSkhDalI0TUUxVGJqSk1WMVV4VFRsbU5qZDJiVGxxUjNwdWJUUjJZbU51YzFkeWIwSkhWRzFZVkZWbFowWndiMFpxU0hKVFdHWmFkMjVzTlVNd1QxSkpOVlVLVlM5cE9YQXlTV2hSUkZsMmVYbFdRbmxUVFdwcVYyb3pVMlJzT1VaQk5tVlFjMGh4Wkd4VFkwOVRiVk0yTkc5dE9EVktlVEoyYkhnNVRXVmxlVE5DT1FwcmNtUk1NMlptV0d4b1FqTnJNbHBTVERJemVEZE5iMUpETUVKeFQwSTFOVFJIYVRoUFRVaEVXblJSYld0R05uRjFibkZaZFhGcUszWkxkbEZUV2tKWUNuTlRUMDlHV2xKM2VFbE5jR3d4Wm1kMWFUSXhWemhPY2s1WldEWkpjVnBrT1RsS1ltWlRSVU5DYVRsUFZVRkZTa2xKTkZwamRucENUWFV2ZHpoNFdDOEtaMjluVDA1V2JqVnpkbkIyUzJGUE5HWlFNamhxU2xCS1RVUnJjRlJGYjBoaWMzQjVjVGswVFdodVFVY3llSHBuVG1sMmVVMVdhMDFsVGpFek5IUnJiUXBwU2tWdmVVeHdPR3d4Y0haV09GVTJSRE5JVDJSMFEyUTJkMVZTVFZOMFN6UlRTVzltYzNCWGFXNUVPWGhsTjAxNEwxUjRZaXRzTW1aTGJtNUhiRFZGQ2xNM1dtUlpTR2xvV1RNdk1uVmtOakE0TDJack1WcDJOV2RyTDNSM1YwSnRaSEZvYzNKQ2VXSjVUa2hLU1VkSGIzaE9SbmRCYVVsdk0yVmtZaTlwWkdNS2QzcFRZMUF4UTAxSWNHbzFNVVJuTVZWQ09GbDZTMkZTWkd4d2QzUkdjbkV5V25oTkx5OUJVRGwyT1hwdmNWWjZZMHRzY1RWbE1EVnpWamcyVlVGclV3cDVaM0JvVGpsTk5UWkpORmxIWjNJckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2ZkcWNyNDctZGYyMWY4MmMuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RheXlyZHUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RheXlyZHUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rna3Z6a3pxbm5uX2NsaWFrc3Rlc3RheXlyZHUKICBuYW1lOiBjbGlha3N0ZXN0YXl5cmR1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGF5eXJkdQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rna3Z6a3pxbm5uX2NsaWFrc3Rlc3RheXlyZHUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJabTVYUjFsc1MyRk1Xa0l4ZUZZNVRIQk5XbWRHZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRXcEJNVTFVUVhkT1JFa3dUVVJvWVVaM01IbE9SRUV4VFZSQmQwNUVUVEJOUkdoaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJPWlU1YVRHZzBSVFZZZFhCb1UzSkVjbWsyUTJ3S2J5dGhOUzlyVldOSGRXUk9hVWx5YmpCQmQxVlpaSE5KT1ROcGJIVXpaVlZwWm1wRE9VY3ZXbEZMWVdSQ2EwY3hSa2xxTHpBdlN6WlBVR0kwTTJ4eFRBcE1RMVZWY0c5M05YaG5NbkZ1V0hWS1oycEhaRzV4ZWtOTWJIVldhR28zVmpFMU16ZFlhWHBIU1RodmFYWnVSRFZKVGpoU1ZqRXlNM1ZpVEdkWFNraFVDakowU0hCRWNYbFFNbk40VFhkbFdtdGtPV053YkhkR1dYQlJORTVSWkdORU5VZHFUVXBFTkZGM1luSTFhM05oZUhWUmNGSkZWbUZGZFRCMldtWjFNV29LVUdOWFdEaExTVXRHYkdKbU0wbEdPV3h0T1hZNU1sUnFORWxDUzJrcldFVm5ZMmxxYm10blNWb3dTM1o2WWpSVWRtRjFVVXB0Y3psTFMyMUtlRFJvWlFwaVpHMXFaVEJCTW1nM2JFVTBXR3hKU2t4MU9VbFVjQ3QyVW1sRWFITnpTek5MUWpocGNUQXhPWFI1WVhweE1VeDBUV05YTWs5Q1lYZDVTalZ2TWpjMkNubHNkamRKVG5oM2R6Um5MMGsyYUhKTWFWVjFabTR2TldFMGIySkJURzV5Ym1GU1NWSk5ObVpoVVZKMFRGWnpkREJOTldodFMzSkNSVFpqV1ZGbFNWZ0tlak5RV0V4TmNYSlliMFpRWXl0V1ZDOXZNWGhXZW5WaGIxWlpXVXhZWmtKU2VIbHNhVUZYV0RkeFMxSnBkMDV0WjJkNVJEQk9RVllyU1VnNWRWZFpNQXBxYzFJemFVZzJWVU5JWVRab1oySmhSRmMyWjFadlkyRjNhbkE1SzJoeU5VTnNTSFpXYm5KWE5UWlhha1YxU1UweWVIaFFSbmRVYlZkQ1RsYzRlV1pRQ25wbWVuSlpOMnBhTjNGb1RGbHhUVmN5V1VkdllsRlJkbmN3WmxSRUswVm9kMlJ2WmpjNU5GQkxMMFp5TUVoTlZHdHBPRUpuZVU5d2VtVlZTRTAwT1ZZS1JqZHVjMm8wVGpCdmFuZzRjbEJUTVN0cVRuaDBUMnRRY21SelEwOXJSMDAzYmxGWlVqSlBZMmRFTlVOTlNGTlRaV1U0VjFkT2JsZ3lXRVpWYm1vMlN3cGpXWFEzTnk5bGRYVm9kSEJFTTFCaWNtMDBZVFozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5QVmtaclYwRlVTSGNLUkhsbFMzRmFlRkJQYldWUVpqWjZMMFJxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUYzV0RGYWRFSXZibTQ1Y205ek4zRlpPR3RLTVFwcmMxZGxNSEZESzFsSGVGTTFUVXMwVUZReU9GZGlTRTlHUlVzM1FtWlNVbkpOVG5WbFJrMWpWekZCT0UwMU5rMWhPR2xEU25aNWMxTjBibWN2YkZoNENrUkdTR2RPUm5SaFRtOTJUSFU0V25aRlJTOTVlRVZhVUdOYVNsWkhRMlZNT1ZSVGFHcFRiSE5OTDJ4eWJrUm1VVmRHVTBodGMwbGhObkpOYVZoVVJYRUtXWFpyY0U5UVIwNVlkVXg0TVZReVJXTkdWWEZvZW5CR01YcFBNa2RyTDFWV1FWRk9XUzlHUW05cFpHazFZaTkxZEhWMlozVldSbVV4TURGR05GSlNOQXBHY0U1Q2EybzBhbWhKV0doVVdrTnZaMHRSTDJKMGEzZFNhVFZxWlZSVFdIRkdaVkZFUkhKSVNFMTJkWE5WVkVKUE1FUlZjV1ZzV1ZobGR6RmljbVV4Q2poWU0wSjRaM3BTVG1WS1VtdFBUamRIU2tkT1NrcFZMMDVsVVc1cmRVMU1iM29yV2pGWVppdEJUakkyZWs1UlpHOTBTVlpEWmxBMmNVVXdLMUJEYkM4S2RsUlRNRkZKYlc1bmMwYzJlVVZPTDNwdGMwc3dORGhRZHpCNGVEWlBUalZ3Y20wemVHVlJWMFJ0T0c1ak1GTTBWVGR4V1ZOMFJVNUZXQ3R0TlZOa1NncE1SelJpZDJwQlQzRlhZWHB1TTJOMk1rNVhVbUo1UXpsSldsQndOREJYWTFKVFJrdEtlV3R0ZG5NemFGZDJaak5CWlZSRFZVRTBTMWhNTm5OelFsUTNDbTF4YlM5SFpGRlNiemxCVDFadFdtTXdPSFl3UVU5bU1raHJXUzlaWkZaS1NGVkpVVVpTYmxCb2RXMHlTSFoyUVdGd2QwWkhOak5IVm1kT0t6SlZWV1lLWWt3eVVVNVdNVk12VURBeFNHc3lXSGw0YVdGV1NXcDJjRE5hUjFkRE5EZG9iMEo2TDJzeGRtVkNNV1ZUU1dGcWRXTkdRMXBQWVhGamFXZFJOM0F2TndwMlpIRkJaUzlGYm5sUmFHUmpNVGRXV1dkek5YRnZibXB4Y1hobmFIZ3liemczZEVOSlZXZEtXVWxTUjA1bVRVSkxjVGN3YUdacVRHcFdZMmhMTmpoS0NrTnZWMXAyV0hCR1oyeHlMekppVW1OMVQwMTNWVTlSUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCZWxocVYxTTBaVUpQVmpkeFdWVnhkelkwZFdkd1lWQnRkV1kxUmtoQ2NtNVVXV2xMTlRsQlRVWkhTR0pEVUdRMENuQmlkRE5zU1c0MGQzWlNkakpWUTIxdVVWcENkRkpUU1M4NVVIbDFhbW95SzA0MVlXbDVkMnhHUzJGTlQyTlpUbkZ3TVRkcFdVbDRibG8yYzNkcE5XSUtiRmxaS3pGa1pXUXJNVFJ6ZUdsUVMwbHlOWGNyVTBSbVJWWmtaSFEzYlhrMFJtbFNNRGx5VWpaUk5uTnFPWEpOVkUxSWJWcElabGhMV21OQ1YwdFZUd3BFVlVoWVFTdFNiM3BEVVN0RlRVYzJLMXBNUjNOaWEwdFZVa1pYYUV4MFRESllOM1JaZWpOR2JDOURhVU5vV2xjek9YbENabHBhZG1JdlpHczBLME5CQ2xOdmRteDRTVWhKYnpVMVNVTkhaRU55T0RJclJUY3ljbXREV25KUVUybHdhV05sU1ZodE0xcHZNM1JCVG05bE5WSlBSalZUUTFNM2RsTkZObVp5TUZrS1p6UmlURU4wZVdkbVNYRjBUbVppWTIxek5uUlROMVJJUm5ScVoxZHpUV2xsWVU1MUszTndZaXQ1UkdOalRVOUpVSGxQYjJGNU5HeE1ialV2SzFkMVN3cEhkME0xTmpVeWExTkZWRTl1TW10RllsTXhZa3hrUkU5WldtbHhkMUpQYmtkRlNHbEdPRGw2TVhsNlMzRXhOa0pVTTFCc1ZTODJUbU5XWXpkdGNVWlhDa2RETVROM1ZXTmpjRmxuUm13ck5tbHJXWE5FV205SlRXYzVSRkZHWm1sQ0wySnNiVTVKTjBWa05HZ3JiRUZvTW5WdldVY3laekYxYjBaaFNFZHpTVFlLWm1adllTdFJjRkkzTVZvMk1YVmxiRzk0VEdsRVRuTmpWSGhqUlRWc1oxUldkazF1ZWpnek9EWXlUelF5WlRadlV6Skxha1owYlVKeFJ6QkZURGhPU0Fvd2R5OW9TV05JWVVnckwyVkVlWFo0WVRsQ2VrVTFTWFpCV1UxcWNXTXpiRUo2VDFCV1VtVTFOMGtyUkdSTFNUaG1TM293ZEdadmVtTmlWSEJFTmpOaUNrRnFjRUpxVHpVd1IwVmthbTVKUVN0UmFrSXdhMjV1ZGtac2Fsb3hPV3g0VmtvMEsybHVSMHhsS3k4emNuSnZZbUZST1hveU5qVjFSM1Z6UTBGM1JVRUtRVkZMUTBGblFsQnJLM00zUjFkSU9DOUVkU3RNY0ZaVGVFdE5WbEVyVGt0VFlWbDFaVzFVTWpkR2ExQTJjekpwTTNwMFluWTJlV3RWTTFNcmRrdHFlQXB4U1Zob1IwWTNka1pqZEVFdlNrVkxjeXRYWjBwbmRsRXllREJ4U2xwREt6ZE1iMGRpYVZKQk0yWnNTV2x1YmpReE9HMUZPSHAwV2t3NFRVdFJlRmhYQ210MVV6UlpTV2RoTmt4TlRXRmhVemRNUzBWS1ZsRjRiMUY1VmtoaVkyODJabmR3Y1U1Sk1VaGtVbXh5T0RsWlRFdzBZUzg1UkhvMksxaE1lU3RRVmpFS2FYUjJWekZhUlRaek5WQnpjRkZRVURObE1IRlFkbVpxV201ekswbHRRbmwwYVcxeWVXNWpaa0ZIU0U5aFFVMUZNVVZZYnpBM2QyTkpkelU0UTNRdlVRcE1jVGh5VVdkTVlqTTRNSE5FUW5Rd1IzTXdVbmhNZGxWMGMybHFLMlIwSzNFeU9URk1lQ3RqUVRnNVlrWTBOekpqZGxsaGRUbFlVWEYwV0dOblVrcFBDalpqTm01NFpFbDFlWEpxYmxKNk5rMUtUR0pRYzBJclkwTkxXV3RJVms4MVltczJZazFNWVZGb1ZYYzFRa2RRZGtSMmF6WTRTV0l6WVhRME5GWlVkREVLVTFnM1F6VnliWG95S3paeFozZGpSVTlsWkdVd2JUQnFRM2d5YUdsUk9FWnhaV0p5UWpadE1HdGlOSGxaUmpneWFqUkRNbXhWYUc5MWFHMXFaMVV3VHdwMFptUkdTelpuVERkcFFVa3JPRGxrVlhCQmRVeHZhRVpxYm5CWFFVWlZRa2R3VlZGTFEwcEtlUzlTU3pONlUyRXhZVVpyUTNjemRrdFdTR0k0ZFVWRkNqbFBhR3hFY1hRMWNqVm5hWGhVTkRrdlppdFNTMkpyVFRGR2JVaDVWVUZoVEc0ck1sZzRhRkpQT1U1VGJHNXNiRmxyUzFFcmVsUnhMMjFpTW5OVVR6WUtVMGxDVGpaQ1RHOVJjRGQxTkZkS2FuTkNLek5MYVRWcE1sWk5OV3ByTkhCcE56UlZiRXBLVmxkMU5UQnNSMDFWYkZSa1owRjFaSGhYZVRrdlNYTnFjZ3BoTVZWV05FaFhNVkUyUkdGbmFUZEJVekJTUzI5WlMzTkpNMGwzSzIwclJEQm1VMUo1Y0UwdlVWUklOMXBVYUVsalVVdERRVkZGUVRsSVdYVnJSMVp2Q2poSE5EUmpUV1pHVFZCMU5WRkNablU0TUhSUFdXRkthRkJDZEU5a1FWRnpZbG94ZDFGdmRURnFkSHB4YldaM01sUklTVzE0UW5kNGJWQk9jRGg0ZW1jS2MxUnRiaTl1VG1jek5tRkpabEZRZVdWTGRtSlFRbkZDUTNkbVQwVkNOVzlhUlZadlpFWmhjamRIUlVzelFYTktiazFNU1ZaQ0szcHFWRkp4VFdSdVR3cDNWRVF2ZGxJeE4xTm1Ua3hxWWpSdGFqVkNTVm93VERoVmNqTk1iV2R3Wm01d1RESlJXaTlSYW1wV09VSXdPRlIyUkROS2VIbGpXbTByWWxVMVZGWTRDbkZuU1VkdFJVcEZaM1ZxYzJneGRUY3JPSFV4TmpaWmVWQjVXa3B1ZFhSVlpVYzBSM1U0Y2xSWVdqQTFXV1pMVGpWdE4xSm5TazlGTVVWdmNHWk5VMDRLT0d4TWQyeDVTMDFKZEU5QlYxVjZSMWRRY0daamNtcFlkMlo1U210QmEwTlZTWEJvT0VvNU1FUk9jWEpGUTJWRFdGWjVjWEIxTmpJM2FWWnVSVlFyYlFwUFVtbE5hSE16U3pGVGRFMHZVVXREUVZGRlFURjVkVXh2V1hwVFRuZFFWRXBDTVVsR1ZXTmtkRnBSVDJaSlEyb3JhSGhWVkd4V2NGZDRkWGxqY0dSaENtNXRiMnRrTlZkM01YQlhZVTh4V1UwNFZXODVXR3RGZFZST2N6WjBTRFV4V1V4cFVqUjRUMlVyWlZRMGVtbzJLMGRRY0dGVFdVdFpiak55ZWpSb2JFOEthVGQwWTNoSGVYRnNSbFpsY2tKWmJEVlhhRmsyZDFaTU1FbHZPSFp0WTBSb1dsQk1SRkEwTUdwRFZqTkNkek5DVDNaalZWTnNkbWd4WlhjNWFHUXlSUW93TXk5c2IwOW5iekkyZG05SFZYcHpTbGwwVUdjelEzWlljbXN5TURKeldVOXpiek5EWVRaTGFGTk1NbXBvTkVneVRsRmlOa00yTVdGbGJ6SmpORlZ4Q25Ca1pERk5XVXNyVFhwRWNVZGxRV3RQTjI4d2RtMW5WQ3MzUm5obE5HMURiRE41ZFV4bmJFSlJWbXB0WmtzMlVrZ3lPR0pSY0RFeFZFSm9lVnBHY25JS01XRnlVazQ1TDBWR1NHUkxlVFlyUW1sdFlYUk5NbEk0VVZoVGRYQmlZV1JLYTNndlVuVnpRVUozUzBOQlVVVkJOa1JuYm5KWVZWaDRWMVFyWVcxMmNRcGljMmxCVW14ck1UTktiRXB2VFdSMVZraHRaMEZsWkVKRFVFOUpaM28xVW5ad09IVnZRVFJOZVc1MVdsSmhkQ3RzWTNWTlpIRjFWVFpsVm1GS2QxVldDa2htT0VaSmNsTlJURmc0WWt0RVNVcExVMEpHTlRsMmNUQkhNVFprZVVWd0syTmhTbGRXVDBjd2QyNVpORTFwYjJWR1l6RkdXblpSYjI5YVdVOVNOVGNLVld4cmVVTlVhRGRUZERoR1YwVnZlV2hMY2xWalRWTjJOVzFQTWxZNGNHNW5PVGxrYjBsaVIzVlpaRGhYU214Vk5ERnlXVWM0S3l0V05GUk1TRkJIS3dwUlVtcG5USGRwSzFCelpGcFVZblV6WlZoT01tUmxZMWxsTjI5Uk0xY3dhbU5aWWpkNmIxcHdjekUzVERGeVlreGtRbTV4TlZOSFZuTllOa2RIZUhSMkNsRldibTFVTWpNeE9FOXZUbkF4TTJSWWRVZ3hSSGRVZGpGUVFsQmllRTFhVnpKcFVraFRlR0V3ZWs1SGVrbEtkemxVU2tWblVXTlZZMHRLV1ZFeWJsUUtOWE5HVjFKUlMwTkJVVVZCYTJKUFFUazRTRGw2ZUdOa09FbFRUR1pUTUUwMWVHNDRkbFF6TW5rM1VraFBhM2RJTjFwUVVuZEdjbEpIUW1oVU0xVTFWZ293ZEdreUsxcHpTbHBLUzJFdk5tOTJhV2RsYUhSMmMzbDZSek4yUXpnNFRHaGlaMUUyYzJZNWRtSm5OVlI2U0VveU5sSk5XbFIzZUhaa2FpOTBiSEpJQ2tneU5qTnFkSFp2YVZoSGFGWklVR1p3VEZWWE9FOHJZM0ZQVlhSU0x6QlROVUoxZVdZcmNFZG5TVVY2UldrNGNIVTRkMlV4VUdwMGNYSkpaV05zYTBNS05HTXlSV1Y1TVd4amRqZHJkSFZMYkZCblZUVktUM2xQUjJKRk5HdzJka1JVVDJkcFFVcGFRbEpuYUV4YVYzWk1iVWszY1d4RmMwZFhRWEZRTlhocVlncGFjSEZ0ZVhsTVIwcHNUM1Y0TkdncmFqVTNWMk0wY205RVYwSXlTMlZLUjJRNVQxWk1OMU5rZGt0V2JERnFVRGxoTm5aaFQyazFMMG80Tld4dlpXODJDbEZ2YlUwNGJWSkVNbU0wZUZadE1ta3phMllyZHpKUWJrRnFiMjF5V1ZWUlNGRkxRMEZSUlVGMlIwTXJWVlpCWkVSUFEwTjJiMFpZYVhFek5sRmtVRGdLVjBWdmJEaDVkMUpGWVhsWVJrVktUVWR4TTFKdGJWVnRkblF5UWxCbU9GTlFhVEl2VkVGUWJuRkdVMWwwWVhvNGVrcFNTWEpDVVRWcU1GbDNiR1EyUmdwcWFHdHdkREZTVTJreU1tUXlRUzlaUjJwTFkzbEpjVVpLZUhCdGNqaElUVTFXTWxGM2VYRmtVVTlsSzNOeE1rUjBNR1Z5UjBnMFpIRnNORUpNTXk5NkNtTkRiWFZCYVRNdlJqWmtNazFvVUVsc2VtMU1XR0kxYmxOVmMyVlZiVkJqUVdNMGJWUTFjVmRGY2pNclJrbEhXWE55ZFZBNFJUZEtWak5RTVdwR09XTUtURzFUWTI1c1NWRnNabmRqTkZwTWNVdENTMDFYY21SQ1QzWm9jV2RLV25CcFRXaFBNbkVyUlVjeGJUY3pTSEY1WWpSQ2FVdHhRelpQWkhwVGVqSXJjd3ByYUN0U1JUaHpRa2t4ZGpjNVduVlJUblJEUjIxbmNHUmxVV3BNYVd3clVTOWFRaXRxYW1GRU5XMXdabTg1YWxkbFFWZEtiMHB2UXpKc1psSjZkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBiZTUxNGFiMDQ1YThlODk4OGYxNGQ4ZjcwMWE5NTcwYWIxZmM3MDcyOGJkZTgxNmE1NzBmZGVmOGMyY2UxMGRkZDc4YzZiMGFhZDNhZjVlZjM2MTY1MTAwMGRmMjg3OWUxYWQ2MzQ1MDIwMzBjMmQ4MTgyMmE2ZWI1MTc5MTI5Mwo=\"\n \ }\n ]\n }" headers: cache-control: @@ -591,7 +691,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:13 GMT + - Tue, 10 May 2022 04:37:52 GMT expires: - '-1' pragma: @@ -625,10 +725,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -638,20 +738,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '929' + - '922' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:14 GMT + - Tue, 10 May 2022 04:37:53 GMT expires: - '-1' pragma: @@ -673,8 +773,8 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": ["key1=value1:PreferNoSchedule"], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -687,16 +787,16 @@ interactions: Connection: - keep-alive Content-Length: - - '552' + - '545' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -706,23 +806,23 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/2f969c1b-f539-476f-8cdd-208ec9dbcb14?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71cfbc10-64f9-458e-beca-0b6e5b9401ab?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1014' + - '1007' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:16 GMT + - Tue, 10 May 2022 04:37:55 GMT expires: - '-1' pragma: @@ -738,7 +838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1195' status: code: 200 message: OK @@ -756,15 +856,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f969c1b-f539-476f-8cdd-208ec9dbcb14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71cfbc10-64f9-458e-beca-0b6e5b9401ab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9c962f-39f5-6f47-8cdd-208ec9dbcb14\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:23:16.4266666Z\",\n \"endTime\": - \"2022-04-14T05:23:23.8244987Z\"\n }" + string: "{\n \"name\": \"10bccf71-f964-8e45-beca-0b6e5b9401ab\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:37:55.6433333Z\",\n \"endTime\": + \"2022-05-10T04:38:00.5651424Z\"\n }" headers: cache-control: - no-cache @@ -773,7 +873,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:46 GMT + - Tue, 10 May 2022 04:38:25 GMT expires: - '-1' pragma: @@ -805,10 +905,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -818,21 +918,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1015' + - '1008' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:46 GMT + - Tue, 10 May 2022 04:38:25 GMT expires: - '-1' pragma: @@ -864,10 +964,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -877,21 +977,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1104' + - '1097' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:46 GMT + - Tue, 10 May 2022 04:38:26 GMT expires: - '-1' pragma: @@ -923,10 +1023,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -936,21 +1036,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.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-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1015' + - '1008' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:47 GMT + - Tue, 10 May 2022 04:38:26 GMT expires: - '-1' pragma: @@ -972,8 +1072,8 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -986,16 +1086,16 @@ interactions: Connection: - keep-alive Content-Length: - - '522' + - '515' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1005,22 +1105,22 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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/427387df-6df8-4122-951a-f4fc70a7b5bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6519929-6176-4ec4-8c11-f88b29c7b47a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '954' + - '947' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:50 GMT + - Tue, 10 May 2022 04:38:28 GMT expires: - '-1' pragma: @@ -1036,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 200 message: OK @@ -1054,24 +1154,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/427387df-6df8-4122-951a-f4fc70a7b5bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6519929-6176-4ec4-8c11-f88b29c7b47a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df877342-f86d-2241-951a-f4fc70a7b5bb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:23:50.5266666Z\",\n \"endTime\": - \"2022-04-14T05:23:57.7656563Z\"\n }" + string: "{\n \"name\": \"299951e6-7661-c44e-8c11-f88b29c7b47a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:38:29.14Z\",\n \"endTime\": + \"2022-05-10T04:38:36.8684653Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:19 GMT + - Tue, 10 May 2022 04:38:58 GMT expires: - '-1' pragma: @@ -1103,10 +1203,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1116,20 +1216,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '955' + - '948' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:20 GMT + - Tue, 10 May 2022 04:38:58 GMT expires: - '-1' pragma: @@ -1161,10 +1261,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1174,20 +1274,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"upgradeSettings\": + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '955' + - '948' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:21 GMT + - Tue, 10 May 2022 04:38:59 GMT expires: - '-1' pragma: @@ -1221,26 +1321,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66ba9a26-dcdc-461a-a294-bad5de030aa4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/224eee2f-2584-46e5-9c51-9b60df07224c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:24:22 GMT + - Tue, 10 May 2022 04:39:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/66ba9a26-dcdc-461a-a294-bad5de030aa4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/224eee2f-2584-46e5-9c51-9b60df07224c?api-version=2016-03-30 pragma: - no-cache server: @@ -1250,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14994' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml index 82a425cd1f9..773f3ca580a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - --resource-group --name --location User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/id000003?api-version=2018-11-30 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:23:17 GMT + - Tue, 10 May 2022 04:50:03 GMT expires: - '-1' location: @@ -43,26 +43,28 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1191' status: code: 201 message: Created - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwzddcfwki-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlh6umwi7s-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}}}' headers: Accept: - application/json @@ -73,39 +75,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1495' + - '1628' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -118,21 +120,24 @@ interactions: [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3149' + - '3328' content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:21 GMT + - Tue, 10 May 2022 04:50:06 GMT expires: - '-1' pragma: @@ -144,7 +149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' status: code: 201 message: Created @@ -163,14 +168,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" headers: cache-control: - no-cache @@ -179,7 +184,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:23:51 GMT + - Tue, 10 May 2022 04:50:37 GMT expires: - '-1' pragma: @@ -212,14 +217,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" headers: cache-control: - no-cache @@ -228,7 +233,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:21 GMT + - Tue, 10 May 2022 04:51:07 GMT expires: - '-1' pragma: @@ -261,14 +266,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" headers: cache-control: - no-cache @@ -277,7 +282,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:50 GMT + - Tue, 10 May 2022 04:51:37 GMT expires: - '-1' pragma: @@ -310,14 +315,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" headers: cache-control: - no-cache @@ -326,7 +331,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:20 GMT + - Tue, 10 May 2022 04:52:07 GMT expires: - '-1' pragma: @@ -359,14 +364,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" headers: cache-control: - no-cache @@ -375,7 +380,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:51 GMT + - Tue, 10 May 2022 04:52:37 GMT expires: - '-1' pragma: @@ -408,15 +413,113 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1968e23c-fbcb-416b-9fd9-cfffcb12f3e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ce26819-cbfb-6b41-9fd9-cfffcb12f3e1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:23:21.1333333Z\",\n \"endTime\": - \"2022-04-14T05:26:13.8945894Z\"\n }" + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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 --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3fff347-bca5-4cd1-a697-05c524e7a42b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"47f3fff3-a5bc-d14c-a697-05c524e7a42b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:50:07.4466666Z\",\n \"endTime\": + \"2022-05-10T04:53:53.0671221Z\"\n }" headers: cache-control: - no-cache @@ -425,7 +528,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:21 GMT + - Tue, 10 May 2022 04:54:07 GMT expires: - '-1' pragma: @@ -458,39 +561,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -509,11 +612,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:54:07 GMT expires: - '-1' pragma: @@ -545,39 +648,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -596,11 +699,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:54:08 GMT expires: - '-1' pragma: @@ -632,7 +735,7 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/id000003?api-version=2018-11-30 response: @@ -646,7 +749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:54:09 GMT expires: - '-1' pragma: @@ -676,12 +779,12 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%27c0c73c80-28d5-4cbd-8c99-85e76ff2a13f%27%29&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%278c63edbb-6cc1-4b3f-8376-c19169ef377c%27%29&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -693,7 +796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:54:09 GMT expires: - '-1' pragma: @@ -725,8 +828,8 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -743,7 +846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:22 GMT + - Tue, 10 May 2022 04:54:09 GMT expires: - '-1' pragma: @@ -782,15 +885,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/2463d889-9306-461f-9d61-10b0b2388ccb?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/32ac1989-2788-4320-ac0f-a3be87bf58fe?api-version=2020-04-01-preview response: body: - string: '{"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/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T05:26:23.7231514Z","updatedOn":"2022-04-14T05:26:24.0200232Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/2463d889-9306-461f-9d61-10b0b2388ccb","type":"Microsoft.Authorization/roleAssignments","name":"2463d889-9306-461f-9d61-10b0b2388ccb"}' + string: '{"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/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:54:10.6258413Z","updatedOn":"2022-05-10T04:54:10.9539567Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/32ac1989-2788-4320-ac0f-a3be87bf58fe","type":"Microsoft.Authorization/roleAssignments","name":"32ac1989-2788-4320-ac0f-a3be87bf58fe"}' headers: cache-control: - no-cache @@ -799,7 +902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:25 GMT + - Tue, 10 May 2022 04:54:12 GMT expires: - '-1' pragma: @@ -811,21 +914,21 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestwzddcfwki-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestlh6umwi7s-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [{"name": "test-name", "namespace": "test-namespace", "identity": {"resourceId": @@ -837,7 +940,7 @@ interactions: "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/f5021213-a65a-452f-93f8-a0343bde0945"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5"}]}, "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"}}, @@ -852,45 +955,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2960' + - '2953' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -905,22 +1008,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"provisioningState\": \"Updating\"\n }\n ]\n },\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d959c91c-cd04-4719-9cc2-9628f648c561?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78e3511e-a9fb-4fce-8e9e-9beba1212cfa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4272' + - '4451' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:58 GMT + - Tue, 10 May 2022 04:54:45 GMT expires: - '-1' pragma: @@ -936,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 200 message: OK @@ -954,23 +1059,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d959c91c-cd04-4719-9cc2-9628f648c561?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78e3511e-a9fb-4fce-8e9e-9beba1212cfa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cc959d9-04cd-1947-9cc2-9628f648c561\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:58.47Z\"\n }" + string: "{\n \"name\": \"1e51e378-fba9-ce4f-8e9e-9beba1212cfa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:54:45.7966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:28 GMT + - Tue, 10 May 2022 04:55:15 GMT expires: - '-1' pragma: @@ -1002,23 +1107,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d959c91c-cd04-4719-9cc2-9628f648c561?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78e3511e-a9fb-4fce-8e9e-9beba1212cfa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cc959d9-04cd-1947-9cc2-9628f648c561\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:58.47Z\"\n }" + string: "{\n \"name\": \"1e51e378-fba9-ce4f-8e9e-9beba1212cfa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:54:45.7966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:58 GMT + - Tue, 10 May 2022 04:55:45 GMT expires: - '-1' pragma: @@ -1050,24 +1155,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d959c91c-cd04-4719-9cc2-9628f648c561?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78e3511e-a9fb-4fce-8e9e-9beba1212cfa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1cc959d9-04cd-1947-9cc2-9628f648c561\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:26:58.47Z\",\n \"endTime\": - \"2022-04-14T05:28:11.2356783Z\"\n }" + string: "{\n \"name\": \"1e51e378-fba9-ce4f-8e9e-9beba1212cfa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:54:45.7966666Z\",\n \"endTime\": + \"2022-05-10T04:56:05.678926Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:29 GMT + - Tue, 10 May 2022 04:56:15 GMT expires: - '-1' pragma: @@ -1099,39 +1204,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1155,11 +1260,11 @@ interactions: cache-control: - no-cache content-length: - - '4274' + - '4267' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:29 GMT + - Tue, 10 May 2022 04:56:16 GMT expires: - '-1' pragma: @@ -1191,39 +1296,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1247,11 +1352,11 @@ interactions: cache-control: - no-cache content-length: - - '4274' + - '4267' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:29 GMT + - Tue, 10 May 2022 04:56:17 GMT expires: - '-1' pragma: @@ -1271,15 +1376,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestwzddcfwki-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestlh6umwi7s-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "oidcIssuerProfile": {"enabled": @@ -1288,7 +1393,7 @@ interactions: "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/f5021213-a65a-452f-93f8-a0343bde0945"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5"}]}, "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"}}, @@ -1303,45 +1408,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2626' + - '2619' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1356,22 +1461,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"provisioningState\": \"Deleting\"\n }\n ]\n },\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f7313b0-ede5-4081-9efd-bc6ba023f1df?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/02c8132e-f1f1-4855-adc4-ffdc20a8fc9d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4272' + - '4451' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:31 GMT + - Tue, 10 May 2022 04:56:20 GMT expires: - '-1' pragma: @@ -1387,7 +1494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 200 message: OK @@ -1405,14 +1512,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f7313b0-ede5-4081-9efd-bc6ba023f1df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/02c8132e-f1f1-4855-adc4-ffdc20a8fc9d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b013731f-e5ed-8140-9efd-bc6ba023f1df\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:31.5466666Z\"\n }" + string: "{\n \"name\": \"2e13c802-f1f1-5548-adc4-ffdc20a8fc9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:56:20.0466666Z\"\n }" headers: cache-control: - no-cache @@ -1421,7 +1528,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:01 GMT + - Tue, 10 May 2022 04:56:49 GMT expires: - '-1' pragma: @@ -1453,14 +1560,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f7313b0-ede5-4081-9efd-bc6ba023f1df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/02c8132e-f1f1-4855-adc4-ffdc20a8fc9d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b013731f-e5ed-8140-9efd-bc6ba023f1df\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:28:31.5466666Z\"\n }" + string: "{\n \"name\": \"2e13c802-f1f1-5548-adc4-ffdc20a8fc9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:56:20.0466666Z\"\n }" headers: cache-control: - no-cache @@ -1469,7 +1576,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:31 GMT + - Tue, 10 May 2022 04:57:19 GMT expires: - '-1' pragma: @@ -1501,15 +1608,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1f7313b0-ede5-4081-9efd-bc6ba023f1df?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/02c8132e-f1f1-4855-adc4-ffdc20a8fc9d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b013731f-e5ed-8140-9efd-bc6ba023f1df\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:28:31.5466666Z\",\n \"endTime\": - \"2022-04-14T05:29:45.1901305Z\"\n }" + string: "{\n \"name\": \"2e13c802-f1f1-5548-adc4-ffdc20a8fc9d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:56:20.0466666Z\",\n \"endTime\": + \"2022-05-10T04:57:31.9638936Z\"\n }" headers: cache-control: - no-cache @@ -1518,7 +1625,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:01 GMT + - Tue, 10 May 2022 04:57:49 GMT expires: - '-1' pragma: @@ -1550,39 +1657,39 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1601,11 +1708,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:01 GMT + - Tue, 10 May 2022 04:57:50 GMT expires: - '-1' pragma: @@ -1638,39 +1745,39 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1689,11 +1796,11 @@ interactions: cache-control: - no-cache content-length: - - '3802' + - '3795' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:02 GMT + - Tue, 10 May 2022 04:57:51 GMT expires: - '-1' pragma: @@ -1726,7 +1833,7 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/id000003?api-version=2018-11-30 response: @@ -1740,7 +1847,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:30:02 GMT + - Tue, 10 May 2022 04:57:51 GMT expires: - '-1' pragma: @@ -1771,15 +1878,15 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%27c0c73c80-28d5-4cbd-8c99-85e76ff2a13f%27%29&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%278c63edbb-6cc1-4b3f-8376-c19169ef377c%27%29&api-version=2020-04-01-preview response: body: - string: '{"value":[{"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/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T05:26:24.2700291Z","updatedOn":"2022-04-14T05:26:24.2700291Z","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.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/2463d889-9306-461f-9d61-10b0b2388ccb","type":"Microsoft.Authorization/roleAssignments","name":"2463d889-9306-461f-9d61-10b0b2388ccb"}]}' + string: '{"value":[{"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/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:54:11.2039642Z","updatedOn":"2022-05-10T04:54:11.2039642Z","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.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/32ac1989-2788-4320-ac0f-a3be87bf58fe","type":"Microsoft.Authorization/roleAssignments","name":"32ac1989-2788-4320-ac0f-a3be87bf58fe"}]}' headers: cache-control: - no-cache @@ -1788,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:30:02 GMT + - Tue, 10 May 2022 04:57:52 GMT expires: - '-1' pragma: @@ -1808,15 +1915,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestwzddcfwki-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestlh6umwi7s-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [{"name": "test-name-binding-selector", "namespace": "test-namespace-binding-selector", @@ -1828,7 +1935,7 @@ interactions: "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/f5021213-a65a-452f-93f8-a0343bde0945"}]}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5"}]}, "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"}}, @@ -1843,46 +1950,46 @@ interactions: Connection: - keep-alive Content-Length: - - '3029' + - '3022' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1898,21 +2005,24 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"bindingSelector\": \"binding_test\",\n \"provisioningState\": \"Updating\"\n }\n ]\n },\n \"disableLocalAccounts\": false,\n - \ \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": + true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fbbc4d8-522c-4853-bcb5-d48f6c953108?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5127386-5b9a-4eb1-922f-6d23e50d0cbf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4347' + - '4526' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:05 GMT + - Tue, 10 May 2022 04:57:54 GMT expires: - '-1' pragma: @@ -1928,7 +2038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1193' status: code: 200 message: OK @@ -1947,14 +2057,14 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fbbc4d8-522c-4853-bcb5-d48f6c953108?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5127386-5b9a-4eb1-922f-6d23e50d0cbf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8c4bb4f-2c52-5348-bcb5-d48f6c953108\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:05.2666666Z\"\n }" + string: "{\n \"name\": \"867312c5-9a5b-b14e-922f-6d23e50d0cbf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:57:55.1266666Z\"\n }" headers: cache-control: - no-cache @@ -1963,7 +2073,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:34 GMT + - Tue, 10 May 2022 04:58:24 GMT expires: - '-1' pragma: @@ -1996,14 +2106,14 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fbbc4d8-522c-4853-bcb5-d48f6c953108?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5127386-5b9a-4eb1-922f-6d23e50d0cbf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8c4bb4f-2c52-5348-bcb5-d48f6c953108\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:05.2666666Z\"\n }" + string: "{\n \"name\": \"867312c5-9a5b-b14e-922f-6d23e50d0cbf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:57:55.1266666Z\"\n }" headers: cache-control: - no-cache @@ -2012,7 +2122,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:05 GMT + - Tue, 10 May 2022 04:58:54 GMT expires: - '-1' pragma: @@ -2045,24 +2155,24 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fbbc4d8-522c-4853-bcb5-d48f6c953108?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5127386-5b9a-4eb1-922f-6d23e50d0cbf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8c4bb4f-2c52-5348-bcb5-d48f6c953108\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:30:05.2666666Z\",\n \"endTime\": - \"2022-04-14T05:31:30.462588Z\"\n }" + string: "{\n \"name\": \"867312c5-9a5b-b14e-922f-6d23e50d0cbf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:57:55.1266666Z\",\n \"endTime\": + \"2022-05-10T04:59:15.7399091Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:35 GMT + - Tue, 10 May 2022 04:59:25 GMT expires: - '-1' pragma: @@ -2095,39 +2205,39 @@ interactions: - --cluster-name --resource-group --namespace --name --identity-resource-id --binding-selector User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwzddcfwki-8ecadf\",\n \"fqdn\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwzddcfwki-8ecadf-2353a4cb.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlh6umwi7s-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlh6umwi7s-8ecadf-152b602e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f5021213-a65a-452f-93f8-a0343bde0945\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/54c6dbf6-b6a1-4055-854f-07f8ce9e5ab5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -2151,11 +2261,11 @@ interactions: cache-control: - no-cache content-length: - - '4349' + - '4342' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:35 GMT + - Tue, 10 May 2022 04:59:25 GMT expires: - '-1' pragma: @@ -2189,26 +2299,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3681e4ec-f4f8-40b2-ada0-a80762dfadd3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a5b673d-687a-4d15-9b8f-e2b4814eb1d0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:31:36 GMT + - Tue, 10 May 2022 04:59:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3681e4ec-f4f8-40b2-ada0-a80762dfadd3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7a5b673d-687a-4d15-9b8f-e2b4814eb1d0?api-version=2016-03-30 pragma: - no-cache server: @@ -2218,7 +2328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14995' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml index b6284c30f65..9331b2526e5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml @@ -13,56 +13,48 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0 Python/3.10.2 - (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0 Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\"\ - ,\n \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.13\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.20.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.21.7\"\n },\n {\n \"\ - orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\ - \n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.20.15\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.21.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.4\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.4\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.4\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.23.3\",\n \"isPreview\": true\n }\n ]\n },\n {\n\ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.6\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.3\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.3\",\n \"isPreview\"\ - : true\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/orchestrators\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n + \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.7\",\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.21.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.21.9\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.4\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.3\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.5\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '2028' content-type: - application/json date: - - Mon, 18 Apr 2022 19:41:08 GMT + - Tue, 10 May 2022 06:40:23 GMT expires: - '-1' pragma: @@ -81,19 +73,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.23.3", "dnsPrefix": "cliakstest-clitest7ck6kvljr-8ecadf", + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitestkcqhfjqvi-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "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, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -104,68 +98,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1752' + - '1562' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.23.3\",\n \"currentKubernetesVersion\"\ - : \"1.23.3\",\n \"dnsPrefix\": \"cliakstest-clitest7ck6kvljr-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest7ck6kvljr-8ecadf-79e1bfc8.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest7ck6kvljr-8ecadf-79e1bfc8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ - : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\"\ - : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 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.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": + \"cliakstest-clitestkcqhfjqvi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7862ca45.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7862ca45.portal.hcp.westcentralus.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3384' + - '3258' content-type: - application/json date: - - Mon, 18 Apr 2022 19:41:14 GMT + - Tue, 10 May 2022 06:40:29 GMT expires: - '-1' pragma: @@ -196,14 +189,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -212,7 +205,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:41:44 GMT + - Tue, 10 May 2022 06:40:59 GMT expires: - '-1' pragma: @@ -245,14 +238,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +254,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:42:14 GMT + - Tue, 10 May 2022 06:41:29 GMT expires: - '-1' pragma: @@ -294,14 +287,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -310,7 +303,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:42:44 GMT + - Tue, 10 May 2022 06:41:59 GMT expires: - '-1' pragma: @@ -343,14 +336,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -359,7 +352,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:43:15 GMT + - Tue, 10 May 2022 06:42:29 GMT expires: - '-1' pragma: @@ -392,14 +385,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +401,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:43:44 GMT + - Tue, 10 May 2022 06:42:59 GMT expires: - '-1' pragma: @@ -441,14 +434,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +450,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:44:15 GMT + - Tue, 10 May 2022 06:43:29 GMT expires: - '-1' pragma: @@ -490,14 +483,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +499,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:44:45 GMT + - Tue, 10 May 2022 06:43:59 GMT expires: - '-1' pragma: @@ -539,64 +532,15 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c812ca1e-9c5a-4b5f-aa6a-d5d0b609d85d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 18 Apr 2022 19:45: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 --nodepool-name --node-count -k --ssh-key-value - -o - User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8031d346-1044-4e55-b46b-9560b0276755?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"46d33180-4410-554e-b46b-9560b0276755\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-18T19:41:14.2533333Z\",\n \"\ - endTime\": \"2022-04-18T19:45:40.8552652Z\"\n }" + string: "{\n \"name\": \"1eca12c8-5a9c-5f4b-aa6a-d5d0b609d85d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:40:29.2966666Z\",\n \"endTime\": + \"2022-05-10T06:44:28.5763088Z\"\n }" headers: cache-control: - no-cache @@ -605,7 +549,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:45 GMT + - Tue, 10 May 2022 06:44:30 GMT expires: - '-1' pragma: @@ -638,65 +582,63 @@ interactions: - --resource-group --name --location --nodepool-name --node-count -k --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.23.3\",\n \"currentKubernetesVersion\"\ - : \"1.23.3\",\n \"dnsPrefix\": \"cliakstest-clitest7ck6kvljr-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest7ck6kvljr-8ecadf-79e1bfc8.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest7ck6kvljr-8ecadf-79e1bfc8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/db2e0a67-9c33-4d1a-84ae-68d5f13787d7\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ - : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"\ - enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\ - ,\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 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.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": + \"cliakstest-clitestkcqhfjqvi-8ecadf\",\n \"fqdn\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7862ca45.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7862ca45.portal.hcp.westcentralus.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_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 + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/aff44d47-46c4-4223-85ba-1d32071485af\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4037' + - '3923' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:46 GMT + - Tue, 10 May 2022 06:44:30 GMT expires: - '-1' pragma: @@ -728,22 +670,21 @@ interactions: ParameterSetName: - --resource-group --name --location --aks-custom-headers --cluster-id -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.10.2 - (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2022-04-18T19:41:04Z","deletion_due_time":"1650570072","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"cause":"automation","date":"2022-05-10T06:40:22Z","deletion_due_time":"1652424027","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '364' + - '370' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Apr 2022 19:45:47 GMT + - Tue, 10 May 2022 06:44:31 GMT expires: - '-1' pragma: @@ -758,7 +699,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"creationData": {"sourceResourceId": + body: '{"location": "westcentralus", "properties": {"creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002"}, "snapshotType": "ManagedCluster"}}' headers: @@ -773,40 +714,40 @@ interactions: Connection: - keep-alive Content-Length: - - '265' + - '271' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --aks-custom-headers --cluster-id -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-04-02-preview response: body: - string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - ,\n \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \ - \ \"location\": \"westus2\",\n \"systemData\": {\n \"createdBy\": \"qizhe@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2022-04-18T19:45:49.0530129Z\"\ - ,\n \"lastModifiedBy\": \"qizhe@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2022-04-18T19:45:49.0530129Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - \n },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\"\ - : {\n \"kubernetesVersion\": \"1.23.3\",\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"\ - loadBalancerSku\": \"Standard\"\n }\n }\n }\n }" + string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n + \ \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \"location\": + \"westcentralus\",\n \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n + \ \"createdByType\": \"Application\",\n \"createdAt\": \"2022-05-10T06:44:32.6540739Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2022-05-10T06:44:32.6540739Z\"\n + \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\n + \ },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\": + {\n \"kubernetesVersion\": \"1.23.5\",\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\n + \ }\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '1070' + - '1124' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:49 GMT + - Tue, 10 May 2022 06:44:33 GMT expires: - '-1' pragma: @@ -822,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -842,26 +783,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41a9ccdd-1749-4f11-a0f3-8f676e230b7c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15080aef-ad05-41c5-a60a-d9d91a70ce74?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 18 Apr 2022 19:45:51 GMT + - Tue, 10 May 2022 06:44:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/41a9ccdd-1749-4f11-a0f3-8f676e230b7c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/15080aef-ad05-41c5-a60a-d9d91a70ce74?api-version=2016-03-30 pragma: - no-cache server: @@ -889,34 +830,34 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-04-02-preview response: body: - string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - ,\n \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \ - \ \"location\": \"westus2\",\n \"systemData\": {\n \"createdBy\": \"qizhe@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2022-04-18T19:45:49.0530129Z\"\ - ,\n \"lastModifiedBy\": \"qizhe@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2022-04-18T19:45:49.0530129Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - \n },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\"\ - : {\n \"kubernetesVersion\": \"1.23.3\",\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"\ - loadBalancerSku\": \"Standard\"\n }\n }\n }\n }" + string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n + \ \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \"location\": + \"westcentralus\",\n \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n + \ \"createdByType\": \"Application\",\n \"createdAt\": \"2022-05-10T06:44:32.6540739Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2022-05-10T06:44:32.6540739Z\"\n + \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\n + \ },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\": + {\n \"kubernetesVersion\": \"1.23.5\",\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\n + \ }\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '1070' + - '1124' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:51 GMT + - Tue, 10 May 2022 06:44:34 GMT expires: - '-1' pragma: @@ -948,36 +889,34 @@ interactions: ParameterSetName: - --resource-group -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2022-04-02-preview response: body: - string: "{\n \"value\": [\n {\n \"name\": \"s000005\",\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - ,\n \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n\ - \ \"location\": \"westus2\",\n \"systemData\": {\n \"createdBy\"\ - : \"qizhe@microsoft.com\",\n \"createdByType\": \"User\",\n \"createdAt\"\ - : \"2022-04-18T19:45:49.0530129Z\",\n \"lastModifiedBy\": \"qizhe@microsoft.com\"\ - ,\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": \"2022-04-18T19:45:49.0530129Z\"\ - \n },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - \n },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\"\ - : {\n \"kubernetesVersion\": \"1.23.3\",\n \"sku\": {\n \"\ - name\": \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\"\ - : true,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\"\ - ,\n \"loadBalancerSku\": \"Standard\"\n }\n }\n }\n }\n\ - \ ]\n }" + string: "{\n \"value\": [\n {\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n + \ \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \"location\": + \"westcentralus\",\n \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n + \ \"createdByType\": \"Application\",\n \"createdAt\": \"2022-05-10T06:44:32.6540739Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2022-05-10T06:44:32.6540739Z\"\n + \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\n + \ },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\": + {\n \"kubernetesVersion\": \"1.23.5\",\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": + \"Standard\"\n }\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1157' + - '1211' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:51 GMT + - Tue, 10 May 2022 06:44:34 GMT expires: - '-1' pragma: @@ -1010,34 +949,34 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-04-02-preview response: body: - string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - ,\n \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \ - \ \"location\": \"westus2\",\n \"systemData\": {\n \"createdBy\": \"qizhe@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2022-04-18T19:45:49.0530129Z\"\ - ,\n \"lastModifiedBy\": \"qizhe@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2022-04-18T19:45:49.0530129Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - \n },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\"\ - : {\n \"kubernetesVersion\": \"1.23.3\",\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"\ - loadBalancerSku\": \"Standard\"\n }\n }\n }\n }" + string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n + \ \"type\": \"Microsoft.ContainerService/ManagedClusterSnapshots\",\n \"location\": + \"westcentralus\",\n \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n + \ \"createdByType\": \"Application\",\n \"createdAt\": \"2022-05-10T06:44:32.6540739Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2022-05-10T06:44:32.6540739Z\"\n + \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\n + \ },\n \"snapshotType\": \"ManagedCluster\",\n \"managedClusterPropertiesReadOnly\": + {\n \"kubernetesVersion\": \"1.23.5\",\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n },\n \"enableRbac\": true,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\n + \ }\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '1070' + - '1124' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:53 GMT + - Tue, 10 May 2022 06:44:35 GMT expires: - '-1' pragma: @@ -1056,20 +995,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": {"creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005"}, - "kubernetesVersion": "1.23.3", "dnsPrefix": "cliakstest-clitest7ck6kvljr-8ecadf", + "kubernetesVersion": "1.23.5", "dnsPrefix": "cliakstest-clitestkcqhfjqvi-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "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, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/ManagedClusterSnapshotPreview @@ -1082,70 +1023,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1943' + - '1753' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview 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 \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - \n },\n \"kubernetesVersion\": \"1.23.3\",\n \"currentKubernetesVersion\"\ - : \"1.23.3\",\n \"dnsPrefix\": \"cliakstest-clitest7ck6kvljr-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest7ck6kvljr-8ecadf-f684a1d1.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest7ck6kvljr-8ecadf-f684a1d1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/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 \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ - : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\"\ - : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\n + \ },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": + \"1.23.5\",\n \"dnsPrefix\": \"cliakstest-clitestkcqhfjqvi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkcqhfjqvi-8ecadf-7edc4ec0.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7edc4ec0.portal.hcp.westcentralus.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_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_westcentralus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3587' + - '3461' content-type: - application/json date: - - Mon, 18 Apr 2022 19:45:57 GMT + - Tue, 10 May 2022 06:44:39 GMT expires: - '-1' pragma: @@ -1157,7 +1097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1178,125 +1118,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '120' - content-type: - - application/json - date: - - Mon, 18 Apr 2022 19:46: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/ManagedClusterSnapshotPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id - --aks-custom-headers --ssh-key-value -o - User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '120' - content-type: - - application/json - date: - - Mon, 18 Apr 2022 19: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/ManagedClusterSnapshotPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id - --aks-custom-headers --ssh-key-value -o - User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:47:28 GMT + - Tue, 10 May 2022 06:45:09 GMT expires: - '-1' pragma: @@ -1331,23 +1169,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:47:58 GMT + - Tue, 10 May 2022 06:45:40 GMT expires: - '-1' pragma: @@ -1382,23 +1220,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:48:28 GMT + - Tue, 10 May 2022 06:46:10 GMT expires: - '-1' pragma: @@ -1433,23 +1271,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:48:58 GMT + - Tue, 10 May 2022 06:46:40 GMT expires: - '-1' pragma: @@ -1484,23 +1322,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:49:28 GMT + - Tue, 10 May 2022 06:47:10 GMT expires: - '-1' pragma: @@ -1535,23 +1373,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:49:58 GMT + - Tue, 10 May 2022 06:47:40 GMT expires: - '-1' pragma: @@ -1586,24 +1424,24 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdf541ad-96c2-4ff8-990f-d2f7c4f43774?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/2028860d-5b9f-4e2b-af01-b3af66b537b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ad41f5fd-c296-f84f-990f-d2f7c4f43774\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-04-18T19:45:57.6Z\",\n \"endTime\"\ - : \"2022-04-18T19:50:05.1239131Z\"\n }" + string: "{\n \"name\": \"0d862820-9f5b-2b4e-af01-b3af66b537b3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T06:44:39.9233333Z\",\n \"endTime\": + \"2022-05-10T06:48:01.1583058Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Mon, 18 Apr 2022 19:50:29 GMT + - Tue, 10 May 2022 06:48:10 GMT expires: - '-1' pragma: @@ -1638,67 +1476,65 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --cluster-snapshot-id --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview 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 \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\ - \n },\n \"kubernetesVersion\": \"1.23.3\",\n \"currentKubernetesVersion\"\ - : \"1.23.3\",\n \"dnsPrefix\": \"cliakstest-clitest7ck6kvljr-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest7ck6kvljr-8ecadf-f684a1d1.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest7ck6kvljr-8ecadf-f684a1d1.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"\ - 1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/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 \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/984967e0-919a-4608-80a5-d890bba33799\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ - : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ - \n ],\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 \"oidcIssuerProfile\": {\n \"\ - enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\ - ,\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\"\n + \ },\n \"kubernetesVersion\": \"1.23.5\",\n \"currentKubernetesVersion\": + \"1.23.5\",\n \"dnsPrefix\": \"cliakstest-clitestkcqhfjqvi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkcqhfjqvi-8ecadf-7edc4ec0.hcp.westcentralus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkcqhfjqvi-8ecadf-7edc4ec0.portal.hcp.westcentralus.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 \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC7vY9YxW9fCyd2dfeHJznGIZBQ46SqzFJp7ysMgNGkg2i1ySGoI1ix/dPPK6E/dNLTk/PdXvHMBu7x3HGMiF2Dq61ke8bjKKjgsCyDlY+b6Xy2xWNleHSWJqsjtmymbcuqsRe5fQeyj7ORF4yUPC0GRVudP5J9iROzuouBBotFQiNpx2TNb4BmtvJS5ajx0c/024jjBmDLiIUWyKnGokS1nfs/XyESxajyUv8rz7NMp3gXZshOAssIfX10cG41InrTqzyLNf+kplUNmc2G0ysvgbXZ6QIXNa315zqyYjnXZiu+aXTeYJF1RpzyEBF5NdQhYnoxICriyZ9vMybJtv9j + azcli_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_westcentralus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westcentralus/providers/Microsoft.Network/publicIPAddresses/3e035dbb-7289-493a-b27b-eb6d889b5107\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\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_westcentralus/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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4240' + - '4126' content-type: - application/json date: - - Mon, 18 Apr 2022 19:50:29 GMT + - Tue, 10 May 2022 06:48:11 GMT expires: - '-1' pragma: @@ -1732,26 +1568,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2c76b67-2219-419d-add4-81ba64d6c6df?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/32fc8bfd-1ed9-41ac-91b8-1312886ce9a7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 18 Apr 2022 19:50:30 GMT + - Tue, 10 May 2022 06:48:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f2c76b67-2219-419d-add4-81ba64d6c6df?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/32fc8bfd-1ed9-41ac-91b8-1312886ce9a7?api-version=2016-03-30 pragma: - no-cache server: @@ -1781,10 +1617,10 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.34.1 (DOCKER) azsdk-python-azure-mgmt-containerservice/18.0.0b - Python/3.10.2 (Linux-5.10.25-linuxkit-x86_64-with) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2022-04-02-preview response: body: string: '' @@ -1794,7 +1630,7 @@ interactions: content-length: - '0' date: - - Mon, 18 Apr 2022 19:50:34 GMT + - Tue, 10 May 2022 06:48:13 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml index b07f017ca91..122a23ea1bb 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:25:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:42:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:25:25 GMT + - Tue, 10 May 2022 04:42:20 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7jedfx4ie-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuinnoke6w-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7jedfx4ie-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7jedfx4ie-8ecadf-bcc98e20.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7jedfx4ie-8ecadf-bcc98e20.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestuinnoke6w-8ecadf\",\n \"fqdn\": \"cliakstest-clitestuinnoke6w-8ecadf-d5475c30.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestuinnoke6w-8ecadf-d5475c30.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:27 GMT + - Tue, 10 May 2022 04:42:24 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1191' status: code: 201 message: Created @@ -153,167 +157,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:25: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 --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:26: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 --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:26: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 --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:29 GMT + - Tue, 10 May 2022 04:42:53 GMT expires: - '-1' pragma: @@ -345,23 +205,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:58 GMT + - Tue, 10 May 2022 04:43:24 GMT expires: - '-1' pragma: @@ -393,23 +253,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:28 GMT + - Tue, 10 May 2022 04:43:54 GMT expires: - '-1' pragma: @@ -441,23 +301,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:59 GMT + - Tue, 10 May 2022 04:44:24 GMT expires: - '-1' pragma: @@ -489,23 +349,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:28 GMT + - Tue, 10 May 2022 04:44:54 GMT expires: - '-1' pragma: @@ -537,23 +397,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:58 GMT + - Tue, 10 May 2022 04:45:24 GMT expires: - '-1' pragma: @@ -585,23 +445,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:29 GMT + - Tue, 10 May 2022 04:45:54 GMT expires: - '-1' pragma: @@ -633,24 +493,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16cb02b6-f573-418b-b5ed-c6a5eb3978d7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb749e21-b986-4320-9e0f-de95904f085f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b602cb16-73f5-8b41-b5ed-c6a5eb3978d7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:25:28.6866666Z\",\n \"endTime\": - \"2022-04-14T05:30:44.8340547Z\"\n }" + string: "{\n \"name\": \"219e74eb-86b9-2043-9e0f-de95904f085f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:42:24.39Z\",\n \"endTime\": + \"2022-05-10T04:46:03.3076797Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:58 GMT + - Tue, 10 May 2022 04:46:24 GMT expires: - '-1' pragma: @@ -682,39 +542,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7jedfx4ie-8ecadf\",\n \"fqdn\": \"cliakstest-clitest7jedfx4ie-8ecadf-bcc98e20.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7jedfx4ie-8ecadf-bcc98e20.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestuinnoke6w-8ecadf\",\n \"fqdn\": \"cliakstest-clitestuinnoke6w-8ecadf-d5475c30.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestuinnoke6w-8ecadf-d5475c30.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fe409f6c-4e58-46bb-8590-20aeee9045cc\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/206658a2-9110-46c1-ad44-247b121040a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -732,11 +592,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:59 GMT + - Tue, 10 May 2022 04:46:25 GMT expires: - '-1' pragma: @@ -770,26 +630,26 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/stop?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:31:00 GMT + - Tue, 10 May 2022 04:46:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 pragma: - no-cache server: @@ -799,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -817,14 +677,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" + string: "{\n \"name\": \"4d4655c6-d876-fd48-ad80-61538601beeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:26.3633333Z\"\n }" headers: cache-control: - no-cache @@ -833,7 +693,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:30 GMT + - Tue, 10 May 2022 04:46:55 GMT expires: - '-1' pragma: @@ -865,14 +725,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" + string: "{\n \"name\": \"4d4655c6-d876-fd48-ad80-61538601beeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:26.3633333Z\"\n }" headers: cache-control: - no-cache @@ -881,7 +741,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:00 GMT + - Tue, 10 May 2022 04:47:26 GMT expires: - '-1' pragma: @@ -913,14 +773,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" + string: "{\n \"name\": \"4d4655c6-d876-fd48-ad80-61538601beeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:26.3633333Z\"\n }" headers: cache-control: - no-cache @@ -929,7 +789,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:30 GMT + - Tue, 10 May 2022 04:47:56 GMT expires: - '-1' pragma: @@ -961,14 +821,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" + string: "{\n \"name\": \"4d4655c6-d876-fd48-ad80-61538601beeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:26.3633333Z\"\n }" headers: cache-control: - no-cache @@ -977,7 +837,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:00 GMT + - Tue, 10 May 2022 04:48:26 GMT expires: - '-1' pragma: @@ -1009,159 +869,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:33: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 stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:34: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 stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:34: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 stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1411917f-5dc3-b741-9267-72ecad8deb94\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:31:00.7366666Z\",\n \"endTime\": - \"2022-04-14T05:34:41.8246789Z\"\n }" + string: "{\n \"name\": \"4d4655c6-d876-fd48-ad80-61538601beeb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:46:26.3633333Z\",\n \"endTime\": + \"2022-05-10T04:48:42.1812341Z\"\n }" headers: cache-control: - no-cache @@ -1170,7 +886,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:01 GMT + - Tue, 10 May 2022 04:48:56 GMT expires: - '-1' pragma: @@ -1202,10 +918,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 response: body: string: '' @@ -1215,11 +931,11 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:01 GMT + - Tue, 10 May 2022 04:48:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7f911114-c35d-41b7-9267-72ecad8deb94?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c655464d-76d8-48fd-ad80-61538601beeb?api-version=2016-03-30 pragma: - no-cache server: @@ -1247,26 +963,26 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:35:01 GMT + - Tue, 10 May 2022 04:48:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 pragma: - no-cache server: @@ -1294,71 +1010,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\"\n }" + string: "{\n \"name\": \"7a0a3a2a-d8e7-4a48-8c3b-0a77e79a6a8a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:57.6166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:01 GMT + - Tue, 10 May 2022 04:49:27 GMT expires: - '-1' pragma: @@ -1390,23 +1058,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\"\n }" + string: "{\n \"name\": \"7a0a3a2a-d8e7-4a48-8c3b-0a77e79a6a8a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:57.6166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:32 GMT + - Tue, 10 May 2022 04:49:57 GMT expires: - '-1' pragma: @@ -1438,23 +1106,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\"\n }" + string: "{\n \"name\": \"7a0a3a2a-d8e7-4a48-8c3b-0a77e79a6a8a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:57.6166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:02 GMT + - Tue, 10 May 2022 04:50:27 GMT expires: - '-1' pragma: @@ -1486,23 +1154,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\"\n }" + string: "{\n \"name\": \"7a0a3a2a-d8e7-4a48-8c3b-0a77e79a6a8a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:57.6166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:32 GMT + - Tue, 10 May 2022 04:50:57 GMT expires: - '-1' pragma: @@ -1534,24 +1202,24 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d690f73-b74f-a04a-afe3-44dc7df43f27\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:35:02.07Z\",\n \"endTime\": - \"2022-04-14T05:38:00.7798032Z\"\n }" + string: "{\n \"name\": \"7a0a3a2a-d8e7-4a48-8c3b-0a77e79a6a8a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:48:57.6166666Z\",\n \"endTime\": + \"2022-05-10T04:51:26.4741368Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:02 GMT + - Tue, 10 May 2022 04:51:27 GMT expires: - '-1' pragma: @@ -1583,10 +1251,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 response: body: string: '' @@ -1596,11 +1264,11 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:02 GMT + - Tue, 10 May 2022 04:51:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/730f694d-4fb7-4aa0-afe3-44dc7df43f27?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2a3a0a7a-e7d8-484a-8c3b-0a77e79a6a8a?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml index 8d587505728..39df401ecd5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml @@ -8,12 +8,14 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,38 +26,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1400' + - '1533' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -67,21 +69,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3000' + - '3179' content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:34 GMT + - Tue, 10 May 2022 04:41:59 GMT expires: - '-1' pragma: @@ -93,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' status: code: 201 message: Created @@ -111,23 +115,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:05 GMT + - Tue, 10 May 2022 04:42:29 GMT expires: - '-1' pragma: @@ -159,23 +163,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:35 GMT + - Tue, 10 May 2022 04:42:59 GMT expires: - '-1' pragma: @@ -207,23 +211,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:05 GMT + - Tue, 10 May 2022 04:43:29 GMT expires: - '-1' pragma: @@ -255,23 +259,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:35 GMT + - Tue, 10 May 2022 04:43:59 GMT expires: - '-1' pragma: @@ -303,23 +307,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:05 GMT + - Tue, 10 May 2022 04:44:29 GMT expires: - '-1' pragma: @@ -351,24 +355,72 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/62a70737-c856-4b23-9624-c1e7921914a5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3707a762-56c8-234b-9624-c1e7921914a5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:39:35.3533333Z\",\n \"endTime\": - \"2022-04-14T05:42:25.5866182Z\"\n }" + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bacd3c38-8e8a-4114-bb1c-47bff252103a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"383ccdba-8a8e-1441-bb1c-47bff252103a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:41:59.34Z\",\n \"endTime\": + \"2022-05-10T04:45:21.6571411Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:35 GMT + - Tue, 10 May 2022 04:45:29 GMT expires: - '-1' pragma: @@ -400,39 +452,39 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -450,11 +502,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:35 GMT + - Tue, 10 May 2022 04:45:30 GMT expires: - '-1' pragma: @@ -486,39 +538,39 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -536,11 +588,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:36 GMT + - Tue, 10 May 2022 04:45:30 GMT expires: - '-1' pragma: @@ -560,26 +612,27 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -590,46 +643,46 @@ interactions: Connection: - keep-alive Content-Length: - - '2494' + - '2575' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -639,21 +692,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81b08f70-980e-45d5-a0bb-6b8f171be017?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec3760b9-0bd0-46ab-8aca-03212d2f7073?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3731' + - '3913' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:39 GMT + - Tue, 10 May 2022 04:45:33 GMT expires: - '-1' pragma: @@ -669,7 +725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1193' status: code: 200 message: OK @@ -687,14 +743,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81b08f70-980e-45d5-a0bb-6b8f171be017?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec3760b9-0bd0-46ab-8aca-03212d2f7073?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"708fb081-0e98-d545-a0bb-6b8f171be017\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:39.0766666Z\"\n }" + string: "{\n \"name\": \"b96037ec-d00b-ab46-8aca-03212d2f7073\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:45:33.7233333Z\"\n }" headers: cache-control: - no-cache @@ -703,7 +759,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:08 GMT + - Tue, 10 May 2022 04:46:03 GMT expires: - '-1' pragma: @@ -735,14 +791,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81b08f70-980e-45d5-a0bb-6b8f171be017?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec3760b9-0bd0-46ab-8aca-03212d2f7073?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"708fb081-0e98-d545-a0bb-6b8f171be017\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:39.0766666Z\"\n }" + string: "{\n \"name\": \"b96037ec-d00b-ab46-8aca-03212d2f7073\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:45:33.7233333Z\"\n }" headers: cache-control: - no-cache @@ -751,7 +807,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:38 GMT + - Tue, 10 May 2022 04:46:33 GMT expires: - '-1' pragma: @@ -783,15 +839,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81b08f70-980e-45d5-a0bb-6b8f171be017?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec3760b9-0bd0-46ab-8aca-03212d2f7073?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"708fb081-0e98-d545-a0bb-6b8f171be017\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:42:39.0766666Z\",\n \"endTime\": - \"2022-04-14T05:43:48.8306998Z\"\n }" + string: "{\n \"name\": \"b96037ec-d00b-ab46-8aca-03212d2f7073\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:45:33.7233333Z\",\n \"endTime\": + \"2022-05-10T04:46:51.6683702Z\"\n }" headers: cache-control: - no-cache @@ -800,7 +856,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:09 GMT + - Tue, 10 May 2022 04:47:03 GMT expires: - '-1' pragma: @@ -832,40 +888,40 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -883,11 +939,11 @@ interactions: cache-control: - no-cache content-length: - - '3733' + - '3726' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:09 GMT + - Tue, 10 May 2022 04:47:03 GMT expires: - '-1' pragma: @@ -919,40 +975,40 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -970,11 +1026,11 @@ interactions: cache-control: - no-cache content-length: - - '3733' + - '3726' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:10 GMT + - Tue, 10 May 2022 04:47:04 GMT expires: - '-1' pragma: @@ -994,26 +1050,27 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1024,45 +1081,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2456' + - '2537' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1072,21 +1129,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac8b9b1-ae3c-4330-8e78-258d17470082?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65a4393-82cc-4736-a5bb-e6ec821956b7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3651' + - '3833' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:13 GMT + - Tue, 10 May 2022 04:47:07 GMT expires: - '-1' pragma: @@ -1102,7 +1162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1192' status: code: 200 message: OK @@ -1120,23 +1180,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac8b9b1-ae3c-4330-8e78-258d17470082?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65a4393-82cc-4736-a5bb-e6ec821956b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1b9c80a-3cae-3043-8e78-258d17470082\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:44:13.5133333Z\"\n }" + string: "{\n \"name\": \"93435ad6-cc82-3647-a5bb-e6ec821956b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:47:07.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:43 GMT + - Tue, 10 May 2022 04:47:37 GMT expires: - '-1' pragma: @@ -1168,23 +1228,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac8b9b1-ae3c-4330-8e78-258d17470082?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65a4393-82cc-4736-a5bb-e6ec821956b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1b9c80a-3cae-3043-8e78-258d17470082\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:44:13.5133333Z\"\n }" + string: "{\n \"name\": \"93435ad6-cc82-3647-a5bb-e6ec821956b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:47:07.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:13 GMT + - Tue, 10 May 2022 04:48:07 GMT expires: - '-1' pragma: @@ -1216,24 +1276,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac8b9b1-ae3c-4330-8e78-258d17470082?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65a4393-82cc-4736-a5bb-e6ec821956b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1b9c80a-3cae-3043-8e78-258d17470082\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:44:13.5133333Z\",\n \"endTime\": - \"2022-04-14T05:45:36.3087595Z\"\n }" + string: "{\n \"name\": \"93435ad6-cc82-3647-a5bb-e6ec821956b7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:47:07.6Z\",\n \"endTime\": + \"2022-05-10T04:48:28.7574866Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:43 GMT + - Tue, 10 May 2022 04:48:37 GMT expires: - '-1' pragma: @@ -1265,39 +1325,39 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5c90d522.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5c90d522.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d9f1e42a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-d9f1e42a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3912076c-76d8-4d48-842b-e448431ec636\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e16e23d4-a7e4-4c19-b6d5-dbdfb34bb700\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1315,11 +1375,11 @@ interactions: cache-control: - no-cache content-length: - - '3653' + - '3646' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:43 GMT + - Tue, 10 May 2022 04:48:38 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml index ea5bc2bae8f..1e8d8ea7cbb 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:31:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:34:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:31:17 GMT + - Tue, 10 May 2022 04:34:41 GMT expires: - '-1' pragma: @@ -43,19 +43,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlm36e5z4g-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestldsxv26bx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,38 +68,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlm36e5z4g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestldsxv26bx-8ecadf\",\n \"fqdn\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -109,21 +111,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:20 GMT + - Tue, 10 May 2022 04:34:45 GMT expires: - '-1' pragma: @@ -135,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1194' status: code: 201 message: Created @@ -153,14 +157,62 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:35: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 + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:50 GMT + - Tue, 10 May 2022 04:35:45 GMT expires: - '-1' pragma: @@ -201,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:19 GMT + - Tue, 10 May 2022 04:36:15 GMT expires: - '-1' pragma: @@ -249,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:50 GMT + - Tue, 10 May 2022 04:36:45 GMT expires: - '-1' pragma: @@ -297,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:20 GMT + - Tue, 10 May 2022 04:37:16 GMT expires: - '-1' pragma: @@ -345,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:50 GMT + - Tue, 10 May 2022 04:37:46 GMT expires: - '-1' pragma: @@ -393,24 +445,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86e19e19-fde2-4b38-9a66-9e521c2306e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/694f9d30-3846-4951-81cc-806166814a8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"199ee186-e2fd-384b-9a66-9e521c2306e1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:31:20.5166666Z\",\n \"endTime\": - \"2022-04-14T05:34:15.9513031Z\"\n }" + string: "{\n \"name\": \"309d4f69-4638-5149-81cc-806166814a8e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:34:45.6666666Z\",\n \"endTime\": + \"2022-05-10T04:38:09.573037Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:20 GMT + - Tue, 10 May 2022 04:38:16 GMT expires: - '-1' pragma: @@ -442,39 +494,39 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlm36e5z4g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestldsxv26bx-8ecadf\",\n \"fqdn\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b28d646-8e47-4fdb-8c94-2e7a15e7cdf8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60483fdb-98d3-4962-92e7-1b2138cb6c1b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -492,11 +544,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:20 GMT + - Tue, 10 May 2022 04:38:16 GMT expires: - '-1' pragma: @@ -528,39 +580,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlm36e5z4g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestldsxv26bx-8ecadf\",\n \"fqdn\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b28d646-8e47-4fdb-8c94-2e7a15e7cdf8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60483fdb-98d3-4962-92e7-1b2138cb6c1b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -578,11 +630,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:21 GMT + - Tue, 10 May 2022 04:38:17 GMT expires: - '-1' pragma: @@ -602,26 +654,27 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitestlm36e5z4g-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestldsxv26bx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b28d646-8e47-4fdb-8c94-2e7a15e7cdf8"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60483fdb-98d3-4962-92e7-1b2138cb6c1b"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -632,45 +685,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2457' + - '2538' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlm36e5z4g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestldsxv26bx-8ecadf\",\n \"fqdn\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b28d646-8e47-4fdb-8c94-2e7a15e7cdf8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60483fdb-98d3-4962-92e7-1b2138cb6c1b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -680,21 +733,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56e6a1ea-7377-4b5b-a541-af628056231a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08bbef7a-ce04-44fa-9b80-c09d2443ebfc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3708' + - '3890' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:23 GMT + - Tue, 10 May 2022 04:38:19 GMT expires: - '-1' pragma: @@ -710,7 +766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 200 message: OK @@ -728,23 +784,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56e6a1ea-7377-4b5b-a541-af628056231a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08bbef7a-ce04-44fa-9b80-c09d2443ebfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eaa1e656-7773-5b4b-a541-af628056231a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:34:23.8633333Z\"\n }" + string: "{\n \"name\": \"7aefbb08-04ce-fa44-9b80-c09d2443ebfc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:20.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:53 GMT + - Tue, 10 May 2022 04:38:50 GMT expires: - '-1' pragma: @@ -776,23 +832,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56e6a1ea-7377-4b5b-a541-af628056231a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08bbef7a-ce04-44fa-9b80-c09d2443ebfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eaa1e656-7773-5b4b-a541-af628056231a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:34:23.8633333Z\"\n }" + string: "{\n \"name\": \"7aefbb08-04ce-fa44-9b80-c09d2443ebfc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:20.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:24 GMT + - Tue, 10 May 2022 04:39:20 GMT expires: - '-1' pragma: @@ -824,24 +880,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56e6a1ea-7377-4b5b-a541-af628056231a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08bbef7a-ce04-44fa-9b80-c09d2443ebfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eaa1e656-7773-5b4b-a541-af628056231a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:34:23.8633333Z\",\n \"endTime\": - \"2022-04-14T05:35:34.30454Z\"\n }" + string: "{\n \"name\": \"7aefbb08-04ce-fa44-9b80-c09d2443ebfc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:38:20.09Z\",\n \"endTime\": + \"2022-05-10T04:39:27.2022879Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:53 GMT + - Tue, 10 May 2022 04:39:49 GMT expires: - '-1' pragma: @@ -873,39 +929,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlm36e5z4g-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlm36e5z4g-8ecadf-e3bf99af.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestldsxv26bx-8ecadf\",\n \"fqdn\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestldsxv26bx-8ecadf-7277b886.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b28d646-8e47-4fdb-8c94-2e7a15e7cdf8\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60483fdb-98d3-4962-92e7-1b2138cb6c1b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -923,11 +979,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:54 GMT + - Tue, 10 May 2022 04:39:50 GMT expires: - '-1' pragma: @@ -961,26 +1017,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c7270ae-1ee3-4a82-a1b1-7a148a4aff50?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f3eef68-0f3d-4a69-a1f6-4e4c0ffc3c91?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:35:55 GMT + - Tue, 10 May 2022 04:39:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8c7270ae-1ee3-4a82-a1b1-7a148a4aff50?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4f3eef68-0f3d-4a69-a1f6-4e4c0ffc3c91?api-version=2016-03-30 pragma: - no-cache server: @@ -990,7 +1046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml index fdf0d946118..4e54b6265f0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:24:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:37:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:37:16 GMT expires: - '-1' pragma: @@ -55,12 +55,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:24:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:37:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -69,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:37:16 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 response: @@ -109,7 +109,7 @@ interactions: content-length: - '0' date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:37:16 GMT expires: - '-1' pragma: @@ -135,7 +135,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview response: @@ -143,19 +143,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:24:22 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:35:32 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -163,18 +165,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:37:16 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -197,7 +200,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview response: @@ -205,19 +208,21 @@ interactions: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": - \"Wed, 06 Apr 2022 06:06:33 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Tue, 10 May 2022 04:24:25 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 14 Apr 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Tue, 10 May 2022 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Thu, 14 Apr 2022 05:24:22 GMT\"\r\n },\r\n \"id\": + \ \"modifiedDate\": \"Tue, 10 May 2022 04:35:32 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n}" headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: @@ -225,18 +230,19 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:23 GMT + - Tue, 10 May 2022 04:37:17 GMT pragma: - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -247,21 +253,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5gagmuwal-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqphtlq4yd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", "useAADAuth": "False"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -272,38 +279,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1724' + - '1857' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest5gagmuwal-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqphtlq4yd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -318,21 +325,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3430' + - '3609' content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:27 GMT + - Tue, 10 May 2022 04:37:20 GMT expires: - '-1' pragma: @@ -344,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -362,14 +371,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" headers: cache-control: - no-cache @@ -378,7 +387,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:24:57 GMT + - Tue, 10 May 2022 04:37:50 GMT expires: - '-1' pragma: @@ -410,14 +419,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +435,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:26 GMT + - Tue, 10 May 2022 04:38:20 GMT expires: - '-1' pragma: @@ -458,14 +467,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" headers: cache-control: - no-cache @@ -474,7 +483,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:25:56 GMT + - Tue, 10 May 2022 04:38:51 GMT expires: - '-1' pragma: @@ -506,14 +515,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +531,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:27 GMT + - Tue, 10 May 2022 04:39:20 GMT expires: - '-1' pragma: @@ -554,14 +563,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +579,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:57 GMT + - Tue, 10 May 2022 04:39:50 GMT expires: - '-1' pragma: @@ -602,15 +611,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1df6d7ee-5208-47b0-b835-4cc8abbf8eee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eed7f61d-0852-b047-b835-4cc8abbf8eee\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:24:27.5566666Z\",\n \"endTime\": - \"2022-04-14T05:27:23.5815256Z\"\n }" + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:40: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 --enable-addons --ssh-key-value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a469cc-0771-4394-b356-60ba0f2e8822?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cc69a464-7107-9443-b356-60ba0f2e8822\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:37:20.7933333Z\",\n \"endTime\": + \"2022-05-10T04:40:38.9399752Z\"\n }" headers: cache-control: - no-cache @@ -619,7 +676,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:27 GMT + - Tue, 10 May 2022 04:40:50 GMT expires: - '-1' pragma: @@ -651,32 +708,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest5gagmuwal-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqphtlq4yd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -688,7 +745,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebdacd4c-6852-4672-8c4c-f5324b3601f2\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e25aae1-9f39-4b95-bff5-8aa733e21042\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -706,11 +763,11 @@ interactions: cache-control: - no-cache content-length: - - '4440' + - '4433' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:28 GMT + - Tue, 10 May 2022 04:40:51 GMT expires: - '-1' pragma: @@ -742,8 +799,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: GET @@ -760,7 +817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:27:28 GMT + - Tue, 10 May 2022 04:40:52 GMT expires: - '-1' pragma: @@ -799,15 +856,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/cfb0fc61-d26d-4351-a297-f784d77a326b?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/2bb6bfce-7737-4dc7-9c12-1e3ee4f55d32?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T05:27:29.1712640Z","updatedOn":"2022-04-14T05:27:29.4368955Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/cfb0fc61-d26d-4351-a297-f784d77a326b","type":"Microsoft.Authorization/roleAssignments","name":"cfb0fc61-d26d-4351-a297-f784d77a326b"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T04:40:52.5015024Z","updatedOn":"2022-05-10T04:40:52.8453070Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/2bb6bfce-7737-4dc7-9c12-1e3ee4f55d32","type":"Microsoft.Authorization/roleAssignments","name":"2bb6bfce-7737-4dc7-9c12-1e3ee4f55d32"}' headers: cache-control: - no-cache @@ -816,7 +873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:27:31 GMT + - Tue, 10 May 2022 04:40:54 GMT expires: - '-1' pragma: @@ -828,7 +885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1194' status: code: 201 message: Created @@ -846,32 +903,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest5gagmuwal-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqphtlq4yd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -883,7 +940,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebdacd4c-6852-4672-8c4c-f5324b3601f2\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e25aae1-9f39-4b95-bff5-8aa733e21042\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -901,11 +958,11 @@ interactions: cache-control: - no-cache content-length: - - '4440' + - '4433' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:32 GMT + - Tue, 10 May 2022 04:40:55 GMT expires: - '-1' pragma: @@ -925,15 +982,15 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitest5gagmuwal-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestqphtlq4yd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", @@ -942,11 +999,12 @@ interactions: "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, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebdacd4c-6852-4672-8c4c-f5324b3601f2"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e25aae1-9f39-4b95-bff5-8aa733e21042"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -957,38 +1015,38 @@ interactions: Connection: - keep-alive Content-Length: - - '2783' + - '2864' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest5gagmuwal-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqphtlq4yd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -998,7 +1056,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebdacd4c-6852-4672-8c4c-f5324b3601f2\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e25aae1-9f39-4b95-bff5-8aa733e21042\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1008,21 +1066,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eb291c2-59bf-414a-b0ae-4ec72b693319?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dcc0a4d-2bae-4bf2-8d06-875600e4a87a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4081' + - '4263' content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:34 GMT + - Tue, 10 May 2022 04:40:57 GMT expires: - '-1' pragma: @@ -1038,7 +1099,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 200 message: OK @@ -1056,23 +1117,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eb291c2-59bf-414a-b0ae-4ec72b693319?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dcc0a4d-2bae-4bf2-8d06-875600e4a87a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c291b27e-bf59-4a41-b0ae-4ec72b693319\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:27:34.65Z\"\n }" + string: "{\n \"name\": \"4d0acc1d-ae2b-f24b-8d06-875600e4a87a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:40:57.9533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:04 GMT + - Tue, 10 May 2022 04:41:27 GMT expires: - '-1' pragma: @@ -1104,23 +1165,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eb291c2-59bf-414a-b0ae-4ec72b693319?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dcc0a4d-2bae-4bf2-8d06-875600e4a87a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c291b27e-bf59-4a41-b0ae-4ec72b693319\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:27:34.65Z\"\n }" + string: "{\n \"name\": \"4d0acc1d-ae2b-f24b-8d06-875600e4a87a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:40:57.9533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:34 GMT + - Tue, 10 May 2022 04:41:57 GMT expires: - '-1' pragma: @@ -1152,24 +1213,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eb291c2-59bf-414a-b0ae-4ec72b693319?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dcc0a4d-2bae-4bf2-8d06-875600e4a87a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c291b27e-bf59-4a41-b0ae-4ec72b693319\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:27:34.65Z\",\n \"endTime\": - \"2022-04-14T05:28:47.6511438Z\"\n }" + string: "{\n \"name\": \"4d0acc1d-ae2b-f24b-8d06-875600e4a87a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:40:57.9533333Z\",\n \"endTime\": + \"2022-05-10T04:42:08.5429815Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:04 GMT + - Tue, 10 May 2022 04:42:28 GMT expires: - '-1' pragma: @@ -1201,32 +1262,32 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitest5gagmuwal-8ecadf\",\n \"fqdn\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestqphtlq4yd-8ecadf\",\n \"fqdn\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1238,7 +1299,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebdacd4c-6852-4672-8c4c-f5324b3601f2\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e25aae1-9f39-4b95-bff5-8aa733e21042\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1256,11 +1317,11 @@ interactions: cache-control: - no-cache content-length: - - '4440' + - '4433' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:05 GMT + - Tue, 10 May 2022 04:42:28 GMT expires: - '-1' pragma: @@ -1292,10 +1353,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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/outboundNetworkDependenciesEndpoints?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/outboundNetworkDependenciesEndpoints?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"category\": \"azure-resource-management\",\n @@ -1326,7 +1387,7 @@ interactions: \ ]\n },\n {\n \"domainName\": \"changelogs.ubuntu.com\",\n \ \"endpointDetails\": [\n {\n \"port\": 80,\n \"protocol\": \"Http\"\n }\n ]\n }\n ]\n },\n {\n \"category\": - \"apiserver\",\n \"endpoints\": [\n {\n \"domainName\": \"cliakstest-clitest5gagmuwal-8ecadf-8b916483.hcp.westus2.azmk8s.io\",\n + \"apiserver\",\n \"endpoints\": [\n {\n \"domainName\": \"cliakstest-clitestqphtlq4yd-8ecadf-6cfdd7e4.hcp.westus2.azmk8s.io\",\n \ \"endpointDetails\": [\n {\n \"port\": 443,\n \"protocol\": \"Https\"\n }\n ]\n }\n ]\n },\n {\n \"category\": \"addon-monitoring\",\n \"endpoints\": [\n {\n \"domainName\": @@ -1347,7 +1408,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:06 GMT + - Tue, 10 May 2022 04:42:28 GMT expires: - '-1' pragma: @@ -1381,26 +1442,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a31439d1-c6dc-42e2-b186-817af354a8bc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b01c6643-684a-4b7a-9fe3-a0a256aa323f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:29:06 GMT + - Tue, 10 May 2022 04:42:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a31439d1-c6dc-42e2-b186-817af354a8bc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b01c6643-684a-4b7a-9fe3-a0a256aa323f?api-version=2016-03-30 pragma: - no-cache server: @@ -1410,7 +1471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azurekeyvaultkms.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azurekeyvaultkms.yaml index 073bb957f84..7edc090386c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azurekeyvaultkms.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azurekeyvaultkms.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:26:12Z"},"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","date":"2022-05-10T04:37:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:12 GMT + - Tue, 10 May 2022 04:37:56 GMT expires: - '-1' pragma: @@ -59,7 +59,7 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-msi/6.0.0 Python/3.8.10 (Linux-5.13.0-1022-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/cliakstestidentity000004?api-version=2018-11-30 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:13 GMT + - Tue, 10 May 2022 04:37:58 GMT expires: - '-1' location: @@ -85,7 +85,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1194' status: code: 201 message: Created @@ -103,12 +103,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:26:12Z"},"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","date":"2022-05-10T04:37:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -117,7 +117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:13 GMT + - Tue, 10 May 2022 04:37:58 GMT expires: - '-1' pragma: @@ -145,7 +145,7 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: @@ -161,7 +161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:13 GMT + - Tue, 10 May 2022 04:37:58 GMT expires: - '-1' pragma: @@ -185,7 +185,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -194,7 +194,7 @@ interactions: response: body: string: '{"odata.error":{"code":"Request_ResourceNotFound","message":{"lang":"en","value":"Resource - not found for the segment ''me''."},"requestId":"e11f6e57-00d6-4b2d-b311-94c5694ad963","date":"2022-04-14T05:26:14"}}' + not found for the segment ''me''."},"requestId":"d5bbbf28-c274-4822-b2df-da5f5d439716","date":"2022-05-10T04:37:59"}}' headers: access-control-allow-origin: - '*' @@ -207,19 +207,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 14 Apr 2022 05:26:13 GMT + - Tue, 10 May 2022 04:37:58 GMT duration: - - '936633' + - '3467990' expires: - '-1' ocp-aad-diagnostics-server-name: - - 8onmiQs4LqwWp5cRoKp5VYVA7o7B+XkLA75o6wIE58I= + - 1zZD+QG4TfLMztBergYr4rMwS+maxuQmrhImOucvvj8= ocp-aad-session-key: - - D5joqYhRWzYWwn49kU1fWcsxM43P8j66404ZxaMRQtvV-GPAr2NGj_1BU1qxFVyShXACbsqEBmtlxenwT2CcZG3LR8X4nOWD2SGqbgICAwO73soTdT_ESyCbNQgDtCSl.EE2PkDEloq9GgoTYTjH9kXLClnJxjt6g_l5_jNEOjDY + - 9oENDiY_j-4gaS9UOLmKiDii8ONMnZ4Jl_LMB3Ue0lJNV0pijTZ12ARMd5f8RTPAoPVcYhwT2D7VNyHYNIzvd96HK4rJCHm0TF6ee1e0j3x3-Q6sRbmoQVbcH5K02ofO.9fSzeHqZXbMxX8HcR88HRmxgXZkK16KUb88q8c_abs8 pragma: - no-cache request-id: - - e11f6e57-00d6-4b2d-b311-94c5694ad963 + - d5bbbf28-c274-4822-b2df-da5f5d439716 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -241,7 +241,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) msrest/0.6.21 + - python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -262,19 +262,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 14 Apr 2022 05:26:13 GMT + - Tue, 10 May 2022 04:37:59 GMT duration: - - '965719' + - '926603' expires: - '-1' ocp-aad-diagnostics-server-name: - - KFpg0CQKL2LBQ5RTR5j1VDUdfkKsmJ1y3ysPC86tOHI= + - yyuJ/12Nv6hG1eilgn+xNPmvhFCAufkz5XdpfLtVshc= ocp-aad-session-key: - - i2ww3_CM564LG2LfnsTVLe33rAAhAfJpH1WcSrxazXVl6JZ5nILv4TZ1ipyY2rdrPcWhXHF7NVBTVsk_WY77NpnTqAhhevoI-SCKYqwyDuQSmQ8cY3dXAoJZjNQVhiJh.b3NB0hVCqF-T9jTggHadNA8dHtAjezkYiYdQKAfqzT0 + - HIqqG6alqBF13oDac-M2OBN0rPkvzKXcPiQNW4K6oZ6uZefB2iD12sKMTKgX4wYnIRMTMyHfj0VxUWlMH_B5wTX-b5b9Gp2r9npNyaR6tlGhoEvTYnn84_yaH7UR3BuG.cvAXyEHMhrp8xvYL4KJkVZ0vowIEgzF2WpoQl6Onsvw pragma: - no-cache request-id: - - d8bee958-d62a-4390-841f-2c656c07639b + - 82468104-abfa-4a30-8222-f88e979fa3a5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -311,12 +311,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T05:26:14.566Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T05:26:14.566Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:37:59.505Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:37:59.505Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:14 GMT + - Tue, 10 May 2022 04:38:00 GMT expires: - '-1' pragma: @@ -343,9 +343,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 200 message: OK @@ -363,12 +363,12 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T05:26:14.566Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T05:26:14.566Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:37:59.505Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:37:59.505Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -377,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:44 GMT + - Tue, 10 May 2022 04:38:30 GMT expires: - '-1' pragma: @@ -395,7 +395,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 status: code: 200 message: OK @@ -413,7 +413,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-keys/4.5.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - azsdk-python-keyvault-keys/4.5.1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: POST uri: https://cliakstestkv000003.vault.azure.net/keys/kms/create?api-version=7.3 response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:45 GMT + - Tue, 10 May 2022 04:38:30 GMT expires: - '-1' pragma: @@ -441,11 +441,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.230.246.79;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=20.29.186.190;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.378.1 status: code: 401 message: Unauthorized @@ -463,12 +463,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-keys/4.5.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - azsdk-python-keyvault-keys/4.5.1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: POST uri: https://cliakstestkv000003.vault.azure.net/keys/kms/create?api-version=7.3 response: body: - string: '{"key":{"kid":"https://cliakstestkv000003.vault.azure.net/keys/kms/3040e8d4042a4ac085cbfe4092a74f19","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"16tXyLaGBgA9vNp0zvu3V8GD1v4T8lbATjCCb0CmCUNZZm87eALztOnJ9dyXpHqi-k1KCu64mdPSzwsddwqDQ-GlClz7y8cT3sxkxc3NtyfWdamuXXuaeFtbgGltzz4iEV4xSZj7Nv_Aid-46EqWzz5ProHOpDjR-BMzHyNkoT8B-6ZVssFWE3Fz-j_vsT_II9FPR3N5-SARnD9od2u4VSAkj_gkudWWIXq_OcwYrS-K6nNNevwuLNaAu1NKaMCNDCyHTR7VDtQswtmEG85qHFaOSVty6sDn1e9Kutb1GdCW2LYhlkHkCt6hyyvt0hoeT7MCnlaXmvSlbukp3J_4fQ","e":"AQAB"},"attributes":{"enabled":true,"created":1649914006,"updated":1649914006,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + string: '{"key":{"kid":"https://cliakstestkv000003.vault.azure.net/keys/kms/d0e4b01592114bfd802a26aef26f9efd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"28Eh61ndZUG-gRMCrRQsWpFxKEPSRtrbPyvVCm43yOOIgPpG4abLO6HLS6z6iAoA8d8PixtsDe0Crx-Rp1CF_t7jVyV4xIHHsE1-ToNU4Zfu237IkaeJJDffT74FtEJ7ikv-oGutXvJt4OLmXWnNIbprzT-7gZIzUCXZxhJBTlCmeWJtgr4BuTvycwKqpaBXCqptbhewc0IwhDlyD23H90S5ntwoR7hWkyrU-0ncOrxP08d4RS0GeZL_yUJ0veKgq69O_wnsKz_cue5p4X7Ullem7J01vm7R-WPH7gRFkKOoG_fDOaP0c41SQTKcbBL0IpdUV2iFRGrgQU7Z9ISpIQ","e":"AQAB"},"attributes":{"enabled":true,"created":1652157511,"updated":1652157511,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: cache-control: - no-cache @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:45 GMT + - Tue, 10 May 2022 04:38:30 GMT expires: - '-1' pragma: @@ -487,11 +487,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=20.230.246.79;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=20.29.186.190;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus2 x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.378.1 status: code: 200 message: OK @@ -509,12 +509,12 @@ interactions: ParameterSetName: - --resource-group --name --object-id --key-permissions -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T05:26:14.566Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T05:26:14.566Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:37:59.505Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:37:59.505Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache @@ -523,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:45 GMT + - Tue, 10 May 2022 04:38:30 GMT expires: - '-1' pragma: @@ -541,7 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 status: code: 200 message: OK @@ -570,21 +570,21 @@ interactions: ParameterSetName: - --resource-group --name --object-id --key-permissions -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-04-14T05:26:14.566Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-04-14T05:26:46.549Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["encrypt","decrypt"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.KeyVault/vaults/cliakstestkv000003","name":"cliakstestkv000003","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{},"systemData":{"createdBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","createdByType":"Application","createdAt":"2022-05-10T04:37:59.505Z","lastModifiedBy":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","lastModifiedByType":"Application","lastModifiedAt":"2022-05-10T04:38:31.76Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"00000000-0000-0000-0000-000000000001","permissions":{"keys":["encrypt","decrypt"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://cliakstestkv000003.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1174' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:46 GMT + - Tue, 10 May 2022 04:38:31 GMT expires: - '-1' pragma: @@ -602,9 +602,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' status: code: 200 message: OK @@ -622,12 +622,12 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:26:12Z"},"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","date":"2022-05-10T04:37:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -636,7 +636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:26:46 GMT + - Tue, 10 May 2022 04:38:31 GMT expires: - '-1' pragma: @@ -653,19 +653,21 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004": - {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyqk6tcc3r-8ecadf", + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlfewsmnts-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -676,38 +678,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1617' + - '1750' Content-Type: - application/json ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyqk6tcc3r-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlfewsmnts-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -719,21 +721,24 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3155' + - '3334' content-type: - application/json date: - - Thu, 14 Apr 2022 05:26:48 GMT + - Tue, 10 May 2022 04:38:34 GMT expires: - '-1' pragma: @@ -745,7 +750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: code: 201 message: Created @@ -763,14 +768,62 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:39: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 --assign-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -779,7 +832,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:19 GMT + - Tue, 10 May 2022 04:39:35 GMT expires: - '-1' pragma: @@ -811,14 +864,14 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -827,7 +880,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:27:49 GMT + - Tue, 10 May 2022 04:40:05 GMT expires: - '-1' pragma: @@ -859,14 +912,14 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -875,7 +928,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:18 GMT + - Tue, 10 May 2022 04:40:34 GMT expires: - '-1' pragma: @@ -907,14 +960,14 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -923,7 +976,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:28:48 GMT + - Tue, 10 May 2022 04:41:05 GMT expires: - '-1' pragma: @@ -955,14 +1008,14 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -971,7 +1024,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:19 GMT + - Tue, 10 May 2022 04:41:35 GMT expires: - '-1' pragma: @@ -1003,14 +1056,14 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\"\n }" headers: cache-control: - no-cache @@ -1019,7 +1072,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:49 GMT + - Tue, 10 May 2022 04:42:05 GMT expires: - '-1' pragma: @@ -1051,15 +1104,15 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15fecaac-40eb-467a-bc9d-9268b57f02e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7066cb8f-c892-433a-ad4f-5453c9269185?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"accafe15-eb40-7a46-bc9d-9268b57f02e3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:26:49.2166666Z\",\n \"endTime\": - \"2022-04-14T05:30:19.3484917Z\"\n }" + string: "{\n \"name\": \"8fcb6670-92c8-3a43-ad4f-5453c9269185\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:38:35.2933333Z\",\n \"endTime\": + \"2022-05-10T04:42:17.9186708Z\"\n }" headers: cache-control: - no-cache @@ -1068,7 +1121,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:19 GMT + - Tue, 10 May 2022 04:42:35 GMT expires: - '-1' pragma: @@ -1100,39 +1153,39 @@ interactions: ParameterSetName: - --resource-group --name --assign-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyqk6tcc3r-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlfewsmnts-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e644600d-873b-4e80-85c5-3b8c937f4e46\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c3e5849-1c88-43eb-8d30-321dab8218d4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1151,11 +1204,11 @@ interactions: cache-control: - no-cache content-length: - - '3927' + - '3920' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:19 GMT + - Tue, 10 May 2022 04:42:35 GMT expires: - '-1' pragma: @@ -1188,39 +1241,39 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyqk6tcc3r-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlfewsmnts-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e644600d-873b-4e80-85c5-3b8c937f4e46\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c3e5849-1c88-43eb-8d30-321dab8218d4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1239,11 +1292,11 @@ interactions: cache-control: - no-cache content-length: - - '3927' + - '3920' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:21 GMT + - Tue, 10 May 2022 04:42:37 GMT expires: - '-1' pragma: @@ -1264,27 +1317,29 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004": - {}}}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": "cliakstest-clitestyqk6tcc3r-8ecadf", + {}}}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliakstest-clitestlfewsmnts-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e644600d-873b-4e80-85c5-3b8c937f4e46"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c3e5849-1c88-43eb-8d30-321dab8218d4"}]}, "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": {"azureKeyVaultKms": {"enabled": - true, "keyId": "https://cliakstestkv000003.vault.azure.net/keys/kms/3040e8d4042a4ac085cbfe4092a74f19"}}}}' + true, "keyId": "https://cliakstestkv000003.vault.azure.net/keys/kms/d0e4b01592114bfd802a26aef26f9efd"}}, + "storageProfile": {"diskCSIDriver": {}, "fileCSIDriver": {}, "snapshotController": + {}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AzureKeyVaultKmsPreview @@ -1297,46 +1352,46 @@ interactions: Connection: - keep-alive Content-Length: - - '2789' + - '2870' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyqk6tcc3r-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlfewsmnts-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e644600d-873b-4e80-85c5-3b8c937f4e46\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c3e5849-1c88-43eb-8d30-321dab8218d4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1346,24 +1401,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/3040e8d4042a4ac085cbfe4092a74f19\"\n - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n - \ },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": + {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/d0e4b01592114bfd802a26aef26f9efd\"\n + \ }\n },\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 },\n \"identity\": {\n \"type\": \"UserAssigned\",\n + \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07934bb6-ebee-4dfa-91e0-ee1ab4b4e3dd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4084' + - '4266' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:23 GMT + - Tue, 10 May 2022 04:42:39 GMT expires: - '-1' pragma: @@ -1379,7 +1436,160 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1190' + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AzureKeyVaultKmsPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id + --aks-custom-headers -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AzureKeyVaultKmsPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id + --aks-custom-headers -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:43: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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AzureKeyVaultKmsPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id + --aks-custom-headers -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04:44: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 @@ -1400,14 +1610,14 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07934bb6-ebee-4dfa-91e0-ee1ab4b4e3dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b64b9307-eeeb-fa4d-91e0-ee1ab4b4e3dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:23.47Z\"\n }" + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" headers: cache-control: - no-cache @@ -1416,7 +1626,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:53 GMT + - Tue, 10 May 2022 04:44:40 GMT expires: - '-1' pragma: @@ -1451,14 +1661,14 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07934bb6-ebee-4dfa-91e0-ee1ab4b4e3dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b64b9307-eeeb-fa4d-91e0-ee1ab4b4e3dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:23.47Z\"\n }" + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" headers: cache-control: - no-cache @@ -1467,7 +1677,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:22 GMT + - Tue, 10 May 2022 04:45:09 GMT expires: - '-1' pragma: @@ -1502,14 +1712,14 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07934bb6-ebee-4dfa-91e0-ee1ab4b4e3dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b64b9307-eeeb-fa4d-91e0-ee1ab4b4e3dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:30:23.47Z\"\n }" + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\"\n }" headers: cache-control: - no-cache @@ -1518,7 +1728,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:53 GMT + - Tue, 10 May 2022 04:45:39 GMT expires: - '-1' pragma: @@ -1553,24 +1763,24 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07934bb6-ebee-4dfa-91e0-ee1ab4b4e3dd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacaeb1c-0f71-4114-b37f-9dc63e5dbfed?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b64b9307-eeeb-fa4d-91e0-ee1ab4b4e3dd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:30:23.47Z\",\n \"endTime\": - \"2022-04-14T05:32:02.8647225Z\"\n }" + string: "{\n \"name\": \"1cebcaca-710f-1441-b37f-9dc63e5dbfed\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:42:39.58Z\",\n \"endTime\": + \"2022-05-10T04:46:07.177908Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:23 GMT + - Tue, 10 May 2022 04:46:09 GMT expires: - '-1' pragma: @@ -1605,39 +1815,39 @@ interactions: - --resource-group --name --enable-azure-keyvault-kms --azure-keyvault-kms-key-id --aks-custom-headers -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyqk6tcc3r-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyqk6tcc3r-8ecadf-f14591d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestlfewsmnts-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlfewsmnts-8ecadf-22182066.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e644600d-873b-4e80-85c5-3b8c937f4e46\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c3e5849-1c88-43eb-8d30-321dab8218d4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1647,7 +1857,7 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/3040e8d4042a4ac085cbfe4092a74f19\"\n + {\n \"azureKeyVaultKms\": {\n \"enabled\": true,\n \"keyId\": \"https://cliakstestkv000003.vault.azure.net/keys/kms/d0e4b01592114bfd802a26aef26f9efd\"\n \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n \ },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstestidentity000004\": @@ -1658,11 +1868,11 @@ interactions: cache-control: - no-cache content-length: - - '4086' + - '4079' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:23 GMT + - Tue, 10 May 2022 04:46:09 GMT expires: - '-1' pragma: @@ -1696,26 +1906,26 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4cc886c-cf63-4cd8-9aee-b4e1fb8b818d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37e4ce66-98c1-4b53-b937-9ebf7f37b513?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:32:24 GMT + - Tue, 10 May 2022 04:46:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d4cc886c-cf63-4cd8-9aee-b4e1fb8b818d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/37e4ce66-98c1-4b53-b937-9ebf7f37b513?api-version=2016-03-30 pragma: - no-cache server: @@ -1725,7 +1935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14988' + - '14994' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml index 0c933506f46..c884efc51be 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml @@ -1,19 +1,21 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkcujyjsdf-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmh5vwuqio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -24,16 +26,16 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1552' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -41,21 +43,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestkcujyjsdf-79a739\",\n \"fqdn\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestmh5vwuqio-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -67,21 +69,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3057' + - '3236' content-type: - application/json date: - - Tue, 26 Apr 2022 03:22:48 GMT + - Tue, 10 May 2022 04:44:10 GMT expires: - '-1' pragma: @@ -93,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -111,23 +115,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:23:20 GMT + - Tue, 10 May 2022 04:44:40 GMT expires: - '-1' pragma: @@ -159,23 +163,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:23:50 GMT + - Tue, 10 May 2022 04:45:10 GMT expires: - '-1' pragma: @@ -207,23 +211,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:24:20 GMT + - Tue, 10 May 2022 04:45:41 GMT expires: - '-1' pragma: @@ -255,23 +259,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:24:50 GMT + - Tue, 10 May 2022 04:46:11 GMT expires: - '-1' pragma: @@ -303,23 +307,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:25:20 GMT + - Tue, 10 May 2022 04:46:41 GMT expires: - '-1' pragma: @@ -351,23 +355,23 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:25:50 GMT + - Tue, 10 May 2022 04:47:11 GMT expires: - '-1' pragma: @@ -399,23 +403,24 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5e98ac3-b4bc-4bab-be71-de2de9c78c18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\"\n }" + string: "{\n \"name\": \"c38ae9f5-bcb4-ab4b-be71-de2de9c78c18\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:44:11.0666666Z\",\n \"endTime\": + \"2022-05-10T04:47:33.6869518Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '170' content-type: - application/json date: - - Tue, 26 Apr 2022 03:26:20 GMT + - Tue, 10 May 2022 04:47:40 GMT expires: - '-1' pragma: @@ -447,59 +452,10 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f751386-fe15-4413-b8d5-c126684a12c2?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8613756f-15fe-1344-b8d5-c126684a12c2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T03:22:49.75Z\",\n \"endTime\": - \"2022-04-26T03:26:33.820278Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '164' - content-type: - - application/json - date: - - Tue, 26 Apr 2022 03:26: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 --ssh-key-value - User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -507,28 +463,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestkcujyjsdf-79a739\",\n \"fqdn\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestmh5vwuqio-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/51bd92ed-06a7-464f-a80c-adeac6128667\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8ca2217b-a024-4b01-8da6-acd1487f065c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -546,11 +502,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Tue, 26 Apr 2022 03:26:50 GMT + - Tue, 10 May 2022 04:47:41 GMT expires: - '-1' pragma: @@ -582,10 +538,10 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -593,28 +549,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestkcujyjsdf-79a739\",\n \"fqdn\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestmh5vwuqio-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/51bd92ed-06a7-464f-a80c-adeac6128667\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8ca2217b-a024-4b01-8da6-acd1487f065c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -632,11 +588,11 @@ interactions: cache-control: - no-cache content-length: - - '3710' + - '3703' content-type: - application/json date: - - Tue, 26 Apr 2022 03:26:51 GMT + - Tue, 10 May 2022 04:47:42 GMT expires: - '-1' pragma: @@ -657,25 +613,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": - "cliakstest-clitestkcujyjsdf-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestmh5vwuqio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.22.6", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/51bd92ed-06a7-464f-a80c-adeac6128667"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8ca2217b-a024-4b01-8da6-acd1487f065c"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableOIDCIssuerPreview @@ -688,16 +645,16 @@ interactions: Connection: - keep-alive Content-Length: - - '2497' + - '2578' Content-Type: - application/json ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -705,28 +662,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestkcujyjsdf-79a739\",\n \"fqdn\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestmh5vwuqio-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/51bd92ed-06a7-464f-a80c-adeac6128667\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8ca2217b-a024-4b01-8da6-acd1487f065c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -736,22 +693,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/5000b676-00c8-4999-a81d-8e803188859f/\"\n + {},\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\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/b21b1cb0-97eb-4bdf-bd8f-b6b8afa36594/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7c05fd2-fee4-4e2b-94cf-40e513be529e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bca1c2f-85a7-4263-9479-19cfbb24cbf3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3797' + - '3979' content-type: - application/json date: - - Tue, 26 Apr 2022 03:26:53 GMT + - Tue, 10 May 2022 04:47:45 GMT expires: - '-1' pragma: @@ -767,7 +726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 200 message: OK @@ -787,23 +746,23 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7c05fd2-fee4-4e2b-94cf-40e513be529e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bca1c2f-85a7-4263-9479-19cfbb24cbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25fc0d7-e4fe-2b4e-94cf-40e513be529e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:26:54.35Z\"\n }" + string: "{\n \"name\": \"2f1cca4b-a785-6342-9479-19cfbb24cbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:47:45.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:27:24 GMT + - Tue, 10 May 2022 04:48:15 GMT expires: - '-1' pragma: @@ -837,23 +796,23 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7c05fd2-fee4-4e2b-94cf-40e513be529e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bca1c2f-85a7-4263-9479-19cfbb24cbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25fc0d7-e4fe-2b4e-94cf-40e513be529e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:26:54.35Z\"\n }" + string: "{\n \"name\": \"2f1cca4b-a785-6342-9479-19cfbb24cbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:47:45.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:27:54 GMT + - Tue, 10 May 2022 04:48:45 GMT expires: - '-1' pragma: @@ -887,23 +846,23 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7c05fd2-fee4-4e2b-94cf-40e513be529e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bca1c2f-85a7-4263-9479-19cfbb24cbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25fc0d7-e4fe-2b4e-94cf-40e513be529e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-26T03:26:54.35Z\"\n }" + string: "{\n \"name\": \"2f1cca4b-a785-6342-9479-19cfbb24cbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:47:45.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 26 Apr 2022 03:28:24 GMT + - Tue, 10 May 2022 04:49:15 GMT expires: - '-1' pragma: @@ -937,24 +896,24 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7c05fd2-fee4-4e2b-94cf-40e513be529e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bca1c2f-85a7-4263-9479-19cfbb24cbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25fc0d7-e4fe-2b4e-94cf-40e513be529e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-26T03:26:54.35Z\",\n \"endTime\": - \"2022-04-26T03:28:26.9368957Z\"\n }" + string: "{\n \"name\": \"2f1cca4b-a785-6342-9479-19cfbb24cbf3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:47:45.7733333Z\",\n \"endTime\": + \"2022-05-10T04:49:19.0554641Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 26 Apr 2022 03:28:54 GMT + - Tue, 10 May 2022 04:49:45 GMT expires: - '-1' pragma: @@ -988,10 +947,10 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -999,28 +958,28 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestkcujyjsdf-79a739\",\n \"fqdn\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkcujyjsdf-79a739-a030716a.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestmh5vwuqio-8ecadf\",\n \"fqdn\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmh5vwuqio-8ecadf-f4f537d4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.04.05\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDxWpkk0PWiJu5W3GhDbCxydp0haSfZ1ZVCkiDWrjPUkSKTrlcB0AXsNhZoO470gAM3lCzU4U44L3Onafmpw4Gp9+xuFNZx8VlN1lJgdqvL308S+qHo47KcrvqP1b9e+jK9b9T4al5sNCuFHw7LuF/zKfu3tfLk5aAuAayYMF0bDjv/qgQo5tgmkOGEM7cihHKkOUkiUrNPc+gogL2LHwYe9q8elf8mJSDvY2ILcJPOSb4JqXl5/Fxc4KD1/IWtwaKuSrYIAHiZe7QfIUdjpfoftwf2tYt6AZGT0cXTujyw6eeHAxAx1ljyFZ7AEfIBxWdKhIbg82JdkWfKTcsx1Aih + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/51bd92ed-06a7-464f-a80c-adeac6128667\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8ca2217b-a024-4b01-8da6-acd1487f065c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1031,7 +990,7 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/5000b676-00c8-4999-a81d-8e803188859f/\"\n + \"https://oidc.prod-aks.azure.com/b21b1cb0-97eb-4bdf-bd8f-b6b8afa36594/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -1039,11 +998,11 @@ interactions: cache-control: - no-cache content-length: - - '3799' + - '3792' content-type: - application/json date: - - Tue, 26 Apr 2022 03:28:54 GMT + - Tue, 10 May 2022 04:49:46 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml index 89d3949d67f..2a62541da9b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml @@ -8,12 +8,13 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -24,7 +25,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1367' + - '1500' Content-Type: - application/json ParameterSetName: @@ -32,32 +33,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-882c36fc.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-882c36fc.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-16e8133c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-16e8133c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -69,22 +70,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3010' + - '3189' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:10 GMT + - Tue, 10 May 2022 04:39:05 GMT expires: - '-1' pragma: @@ -96,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' status: code: 201 message: Created @@ -116,73 +119,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:29: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:10 GMT + - Tue, 10 May 2022 04:39:34 GMT expires: - '-1' pragma: @@ -216,23 +169,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:40 GMT + - Tue, 10 May 2022 04:40:04 GMT expires: - '-1' pragma: @@ -266,23 +219,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:10 GMT + - Tue, 10 May 2022 04:40:34 GMT expires: - '-1' pragma: @@ -316,23 +269,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:40 GMT + - Tue, 10 May 2022 04:41:04 GMT expires: - '-1' pragma: @@ -366,23 +319,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:11 GMT + - Tue, 10 May 2022 04:41:35 GMT expires: - '-1' pragma: @@ -416,24 +369,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cfd2df52-0ec3-4427-b7ed-8fd1f23256cd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d034894e-641f-4e54-8f2d-a404ada01987?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52dfd2cf-c30e-2744-b7ed-8fd1f23256cd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:29:10.75Z\",\n \"endTime\": - \"2022-04-14T05:32:33.5350723Z\"\n }" + string: "{\n \"name\": \"4e8934d0-1f64-544e-8f2d-a404ada01987\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:39:05.0133333Z\",\n \"endTime\": + \"2022-05-10T04:41:55.2626104Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:40 GMT + - Tue, 10 May 2022 04:42:05 GMT expires: - '-1' pragma: @@ -467,32 +420,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-882c36fc.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-882c36fc.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-16e8133c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-16e8133c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -500,7 +453,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/60a13fd7-6aa1-4399-a586-3addc06c5091\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0fab33df-6e4e-475a-8ba3-39600f5fd1d9\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -517,11 +470,11 @@ interactions: cache-control: - no-cache content-length: - - '3663' + - '3656' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:41 GMT + - Tue, 10 May 2022 04:42:05 GMT expires: - '-1' pragma: @@ -553,10 +506,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -566,20 +519,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:42 GMT + - Tue, 10 May 2022 04:42:06 GMT expires: - '-1' pragma: @@ -619,10 +572,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -632,21 +585,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:44 GMT + - Tue, 10 May 2022 04:42:09 GMT expires: - '-1' pragma: @@ -658,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1193' status: code: 201 message: Created @@ -676,23 +629,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:14 GMT + - Tue, 10 May 2022 04:42:38 GMT expires: - '-1' pragma: @@ -724,23 +677,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:45 GMT + - Tue, 10 May 2022 04:43:09 GMT expires: - '-1' pragma: @@ -772,23 +725,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:14 GMT + - Tue, 10 May 2022 04:43:39 GMT expires: - '-1' pragma: @@ -820,23 +773,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:44 GMT + - Tue, 10 May 2022 04:44:09 GMT expires: - '-1' pragma: @@ -868,23 +821,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:15 GMT + - Tue, 10 May 2022 04:44:39 GMT expires: - '-1' pragma: @@ -916,23 +869,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:44 GMT + - Tue, 10 May 2022 04:45:10 GMT expires: - '-1' pragma: @@ -964,23 +917,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:14 GMT + - Tue, 10 May 2022 04:45:39 GMT expires: - '-1' pragma: @@ -1012,23 +965,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:44 GMT + - Tue, 10 May 2022 04:46:09 GMT expires: - '-1' pragma: @@ -1060,23 +1013,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:15 GMT + - Tue, 10 May 2022 04:46:40 GMT expires: - '-1' pragma: @@ -1108,23 +1061,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:45 GMT + - Tue, 10 May 2022 04:47:09 GMT expires: - '-1' pragma: @@ -1156,23 +1109,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:14 GMT + - Tue, 10 May 2022 04:47:40 GMT expires: - '-1' pragma: @@ -1204,24 +1157,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ae1b66-ae75-4638-90e9-5e3874645c1f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83c532ec-9b4e-4c09-ab04-c6374f575f3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"661bae34-75ae-3846-90e9-5e3874645c1f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:32:44.81Z\",\n \"endTime\": - \"2022-04-14T05:38:38.9015325Z\"\n }" + string: "{\n \"name\": \"ec32c583-4e9b-094c-ab04-c6374f575f3b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:42:09.6733333Z\",\n \"endTime\": + \"2022-05-10T04:48:08.730642Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '169' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:44 GMT + - Tue, 10 May 2022 04:48:10 GMT expires: - '-1' pragma: @@ -1253,10 +1206,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1266,19 +1219,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:45 GMT + - Tue, 10 May 2022 04:48:10 GMT expires: - '-1' pragma: @@ -1310,41 +1263,41 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-882c36fc.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-882c36fc.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-16e8133c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-16e8133c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1352,7 +1305,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/60a13fd7-6aa1-4399-a586-3addc06c5091\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0fab33df-6e4e-475a-8ba3-39600f5fd1d9\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1369,11 +1322,11 @@ interactions: cache-control: - no-cache content-length: - - '4368' + - '4354' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:46 GMT + - Tue, 10 May 2022 04:48:10 GMT expires: - '-1' pragma: @@ -1393,20 +1346,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "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", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "currentOrchestratorVersion": "1.21.9", "upgradeSettings": {}, "powerState": + "User", "orchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": true, "gmsaProfile": {"enabled": true}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", @@ -1414,11 +1367,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/60a13fd7-6aa1-4399-a586-3addc06c5091"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0fab33df-6e4e-475a-8ba3-39600f5fd1d9"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKSWindowsGmsaPreview @@ -1431,47 +1385,47 @@ interactions: Connection: - keep-alive Content-Length: - - '2971' + - '3045' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-882c36fc.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-882c36fc.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-16e8133c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-16e8133c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Upgrading\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Upgrading\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1481,7 +1435,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/60a13fd7-6aa1-4399-a586-3addc06c5091\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0fab33df-6e4e-475a-8ba3-39600f5fd1d9\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1490,21 +1444,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4466' + - '4641' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:48 GMT + - Tue, 10 May 2022 04:48:13 GMT expires: - '-1' pragma: @@ -1520,7 +1477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1193' status: code: 200 message: OK @@ -1540,73 +1497,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:39: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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/AKSWindowsGmsaPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:48 GMT + - Tue, 10 May 2022 04:48:43 GMT expires: - '-1' pragma: @@ -1640,23 +1547,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:19 GMT + - Tue, 10 May 2022 04:49:14 GMT expires: - '-1' pragma: @@ -1690,23 +1597,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:49 GMT + - Tue, 10 May 2022 04:49:43 GMT expires: - '-1' pragma: @@ -1740,23 +1647,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:18 GMT + - Tue, 10 May 2022 04:50:13 GMT expires: - '-1' pragma: @@ -1790,23 +1697,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:48 GMT + - Tue, 10 May 2022 04:50:43 GMT expires: - '-1' pragma: @@ -1840,23 +1747,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:19 GMT + - Tue, 10 May 2022 04:51:13 GMT expires: - '-1' pragma: @@ -1890,23 +1797,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:49 GMT + - Tue, 10 May 2022 04:51:44 GMT expires: - '-1' pragma: @@ -1940,23 +1847,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:19 GMT + - Tue, 10 May 2022 04:52:14 GMT expires: - '-1' pragma: @@ -1990,23 +1897,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:49 GMT + - Tue, 10 May 2022 04:52:44 GMT expires: - '-1' pragma: @@ -2040,23 +1947,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:19 GMT + - Tue, 10 May 2022 04:53:14 GMT expires: - '-1' pragma: @@ -2090,23 +1997,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:49 GMT + - Tue, 10 May 2022 04:53:43 GMT expires: - '-1' pragma: @@ -2140,23 +2047,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:19 GMT + - Tue, 10 May 2022 04:54:14 GMT expires: - '-1' pragma: @@ -2190,23 +2097,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:49 GMT + - Tue, 10 May 2022 04:54:44 GMT expires: - '-1' pragma: @@ -2240,23 +2147,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:19 GMT + - Tue, 10 May 2022 04:55:14 GMT expires: - '-1' pragma: @@ -2290,23 +2197,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:50 GMT + - Tue, 10 May 2022 04:55:44 GMT expires: - '-1' pragma: @@ -2340,23 +2247,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:20 GMT + - Tue, 10 May 2022 04:56:15 GMT expires: - '-1' pragma: @@ -2390,23 +2297,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:49 GMT + - Tue, 10 May 2022 04:56:44 GMT expires: - '-1' pragma: @@ -2440,23 +2347,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:19 GMT + - Tue, 10 May 2022 04:57:14 GMT expires: - '-1' pragma: @@ -2490,23 +2397,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:50 GMT + - Tue, 10 May 2022 04:57:44 GMT expires: - '-1' pragma: @@ -2540,23 +2447,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:20 GMT + - Tue, 10 May 2022 04:58:15 GMT expires: - '-1' pragma: @@ -2590,23 +2497,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:50 GMT + - Tue, 10 May 2022 04:58:45 GMT expires: - '-1' pragma: @@ -2640,23 +2547,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:20 GMT + - Tue, 10 May 2022 04:59:14 GMT expires: - '-1' pragma: @@ -2690,23 +2597,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:50 GMT + - Tue, 10 May 2022 04:59:45 GMT expires: - '-1' pragma: @@ -2740,23 +2647,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:21 GMT + - Tue, 10 May 2022 05:00:15 GMT expires: - '-1' pragma: @@ -2790,23 +2697,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:50 GMT + - Tue, 10 May 2022 05:00:45 GMT expires: - '-1' pragma: @@ -2840,23 +2747,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:20 GMT + - Tue, 10 May 2022 05:01:15 GMT expires: - '-1' pragma: @@ -2890,23 +2797,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:50 GMT + - Tue, 10 May 2022 05:01:45 GMT expires: - '-1' pragma: @@ -2940,24 +2847,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59709295-de55-4462-8c62-19cc363f9879?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8de3b0e-15f3-4354-bebe-f1c018197081?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"95927059-55de-6244-8c62-19cc363f9879\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:38:48.9533333Z\",\n \"endTime\": - \"2022-04-14T05:52:53.5831033Z\"\n }" + string: "{\n \"name\": \"0e3bdea8-f315-5443-bebe-f1c018197081\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:48:13.85Z\",\n \"endTime\": + \"2022-05-10T05:01:57.4221314Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:20 GMT + - Tue, 10 May 2022 05:02:15 GMT expires: - '-1' pragma: @@ -2991,41 +2898,41 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-882c36fc.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-882c36fc.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-16e8133c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-16e8133c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -3035,7 +2942,7 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/60a13fd7-6aa1-4399-a586-3addc06c5091\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0fab33df-6e4e-475a-8ba3-39600f5fd1d9\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -3052,11 +2959,11 @@ interactions: cache-control: - no-cache content-length: - - '4466' + - '4452' content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:20 GMT + - Tue, 10 May 2022 05:02:16 GMT expires: - '-1' pragma: @@ -3088,10 +2995,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3101,10 +3008,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -3112,20 +3019,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2686.220322\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1987' + - '1973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:22 GMT + - Tue, 10 May 2022 05:02:17 GMT expires: - '-1' pragma: @@ -3159,26 +3066,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f39e8179-b59d-4ca4-baaa-621ca55ec844?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b83ee2b2-a106-48ff-92c4-0eb6c1fb74d0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:53:22 GMT + - Tue, 10 May 2022 05:02:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f39e8179-b59d-4ca4-baaa-621ca55ec844?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b83ee2b2-a106-48ff-92c4-0eb6c1fb74d0?api-version=2016-03-30 pragma: - no-cache server: @@ -3188,7 +3095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14996' status: code: 202 message: Accepted @@ -3208,26 +3115,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7231892d-8266-4c5f-905d-18c8fe1600c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edbdd1f3-85ff-4ea1-be9b-69ae0fd17ca4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:53:23 GMT + - Tue, 10 May 2022 05:02:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7231892d-8266-4c5f-905d-18c8fe1600c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/edbdd1f3-85ff-4ea1-be9b-69ae0fd17ca4?api-version=2016-03-30 pragma: - no-cache server: @@ -3237,7 +3144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml index f01754e88fd..1d4aa5418f3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml @@ -8,12 +8,13 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "p@0A000003"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -24,7 +25,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1356' + - '1489' Content-Type: - application/json ParameterSetName: @@ -32,32 +33,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4e6b5204.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-4e6b5204.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fbd05de0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-fbd05de0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -69,22 +70,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3010' + - '3189' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:18 GMT + - Tue, 10 May 2022 04:39:55 GMT expires: - '-1' pragma: @@ -96,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1190' status: code: 201 message: Created @@ -116,23 +119,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:29:48 GMT + - Tue, 10 May 2022 04:40:25 GMT expires: - '-1' pragma: @@ -166,23 +169,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:19 GMT + - Tue, 10 May 2022 04:40:55 GMT expires: - '-1' pragma: @@ -216,23 +219,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:30:49 GMT + - Tue, 10 May 2022 04:41:25 GMT expires: - '-1' pragma: @@ -266,23 +269,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:19 GMT + - Tue, 10 May 2022 04:41:55 GMT expires: - '-1' pragma: @@ -316,23 +319,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:48 GMT + - Tue, 10 May 2022 04:42:25 GMT expires: - '-1' pragma: @@ -366,23 +369,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48f90d45-6fcd-4811-b230-e702217050d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\"\n }" + string: "{\n \"name\": \"450df948-cd6f-1148-b230-e702217050d0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:39:55.67Z\",\n \"endTime\": + \"2022-05-10T04:42:52.3656487Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:18 GMT + - Tue, 10 May 2022 04:42:55 GMT expires: - '-1' pragma: @@ -416,83 +420,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73415118-182e-4ce7-aff8-5cf27530e74f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"18514173-2e18-e74c-aff8-5cf27530e74f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:29:18.9633333Z\",\n \"endTime\": - \"2022-04-14T05:32:22.8448788Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05:32: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4e6b5204.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-4e6b5204.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fbd05de0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-fbd05de0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -500,7 +453,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66a9d971-0f7a-43cf-9169-e4e3f51ab509\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/43146ab7-8f7b-44f9-a6d7-481869a4fcf2\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -517,11 +470,11 @@ interactions: cache-control: - no-cache content-length: - - '3663' + - '3656' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:49 GMT + - Tue, 10 May 2022 04:42:56 GMT expires: - '-1' pragma: @@ -553,10 +506,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -566,20 +519,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:50 GMT + - Tue, 10 May 2022 04:42:57 GMT expires: - '-1' pragma: @@ -619,10 +572,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -632,21 +585,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:52 GMT + - Tue, 10 May 2022 04:42:59 GMT expires: - '-1' pragma: @@ -658,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1194' status: code: 201 message: Created @@ -676,23 +629,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:22 GMT + - Tue, 10 May 2022 04:43:29 GMT expires: - '-1' pragma: @@ -724,23 +677,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:52 GMT + - Tue, 10 May 2022 04:44:00 GMT expires: - '-1' pragma: @@ -772,23 +725,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:22 GMT + - Tue, 10 May 2022 04:44:30 GMT expires: - '-1' pragma: @@ -820,23 +773,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:52 GMT + - Tue, 10 May 2022 04:44:59 GMT expires: - '-1' pragma: @@ -868,23 +821,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:22 GMT + - Tue, 10 May 2022 04:45:30 GMT expires: - '-1' pragma: @@ -916,23 +869,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:53 GMT + - Tue, 10 May 2022 04:46:00 GMT expires: - '-1' pragma: @@ -964,23 +917,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:23 GMT + - Tue, 10 May 2022 04:46:30 GMT expires: - '-1' pragma: @@ -1012,23 +965,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:53 GMT + - Tue, 10 May 2022 04:47:00 GMT expires: - '-1' pragma: @@ -1060,23 +1013,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:23 GMT + - Tue, 10 May 2022 04:47:30 GMT expires: - '-1' pragma: @@ -1108,23 +1061,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:53 GMT + - Tue, 10 May 2022 04:48:00 GMT expires: - '-1' pragma: @@ -1156,23 +1109,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:23 GMT + - Tue, 10 May 2022 04:48:30 GMT expires: - '-1' pragma: @@ -1204,24 +1157,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9cf7fbd-bfd1-4f05-b227-bde17c6c136b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e0b4eff-db8a-48e7-983a-bfd52e9df331?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd7fcfe9-d1bf-054f-b227-bde17c6c136b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:32:53.2866666Z\",\n \"endTime\": - \"2022-04-14T05:38:48.0306805Z\"\n }" + string: "{\n \"name\": \"ff4e0b3e-8adb-e748-983a-bfd52e9df331\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:43:00.36Z\",\n \"endTime\": + \"2022-05-10T04:48:58.4348915Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:54 GMT + - Tue, 10 May 2022 04:49:00 GMT expires: - '-1' pragma: @@ -1253,10 +1206,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1266,19 +1219,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:54 GMT + - Tue, 10 May 2022 04:49:01 GMT expires: - '-1' pragma: @@ -1310,41 +1263,41 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4e6b5204.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-4e6b5204.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fbd05de0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-fbd05de0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1352,7 +1305,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66a9d971-0f7a-43cf-9169-e4e3f51ab509\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/43146ab7-8f7b-44f9-a6d7-481869a4fcf2\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1369,11 +1322,11 @@ interactions: cache-control: - no-cache content-length: - - '4368' + - '4354' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:54 GMT + - Tue, 10 May 2022 04:49:01 GMT expires: - '-1' pragma: @@ -1393,20 +1346,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "currentOrchestratorVersion": - "1.21.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.6", "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", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "currentOrchestratorVersion": "1.21.9", "upgradeSettings": {}, "powerState": + "User", "orchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "n!C3000004", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", @@ -1414,11 +1367,12 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 0}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66a9d971-0f7a-43cf-9169-e4e3f51ab509"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/43146ab7-8f7b-44f9-a6d7-481869a4fcf2"}]}, "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": {}}}' + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {}, "fileCSIDriver": {}, "snapshotController": {}}}}' headers: Accept: - application/json @@ -1429,47 +1383,47 @@ interactions: Connection: - keep-alive Content-Length: - - '2968' + - '3042' Content-Type: - application/json ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4e6b5204.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-4e6b5204.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fbd05de0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-fbd05de0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1477,7 +1431,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66a9d971-0f7a-43cf-9169-e4e3f51ab509\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/43146ab7-8f7b-44f9-a6d7-481869a4fcf2\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1486,21 +1440,24 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {},\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": + \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": + \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4365' + - '4540' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:57 GMT + - Tue, 10 May 2022 04:49:04 GMT expires: - '-1' pragma: @@ -1516,7 +1473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1190' status: code: 200 message: OK @@ -1534,14 +1491,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1550,7 +1507,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:27 GMT + - Tue, 10 May 2022 04:49:34 GMT expires: - '-1' pragma: @@ -1582,14 +1539,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1598,7 +1555,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:57 GMT + - Tue, 10 May 2022 04:50:04 GMT expires: - '-1' pragma: @@ -1630,14 +1587,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1646,7 +1603,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:27 GMT + - Tue, 10 May 2022 04:50:35 GMT expires: - '-1' pragma: @@ -1678,14 +1635,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1694,7 +1651,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:57 GMT + - Tue, 10 May 2022 04:51:05 GMT expires: - '-1' pragma: @@ -1726,14 +1683,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1742,7 +1699,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:27 GMT + - Tue, 10 May 2022 04:51:35 GMT expires: - '-1' pragma: @@ -1774,14 +1731,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1790,7 +1747,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:57 GMT + - Tue, 10 May 2022 04:52:05 GMT expires: - '-1' pragma: @@ -1822,14 +1779,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1838,7 +1795,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:27 GMT + - Tue, 10 May 2022 04:52:35 GMT expires: - '-1' pragma: @@ -1870,14 +1827,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1886,7 +1843,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:57 GMT + - Tue, 10 May 2022 04:53:05 GMT expires: - '-1' pragma: @@ -1918,14 +1875,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1934,7 +1891,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:27 GMT + - Tue, 10 May 2022 04:53:35 GMT expires: - '-1' pragma: @@ -1966,14 +1923,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1982,7 +1939,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:57 GMT + - Tue, 10 May 2022 04:54:06 GMT expires: - '-1' pragma: @@ -2014,14 +1971,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2030,7 +1987,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:28 GMT + - Tue, 10 May 2022 04:54:35 GMT expires: - '-1' pragma: @@ -2062,14 +2019,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2078,7 +2035,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:58 GMT + - Tue, 10 May 2022 04:55:05 GMT expires: - '-1' pragma: @@ -2110,14 +2067,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2126,7 +2083,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:28 GMT + - Tue, 10 May 2022 04:55:35 GMT expires: - '-1' pragma: @@ -2158,14 +2115,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2174,7 +2131,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:58 GMT + - Tue, 10 May 2022 04:56:05 GMT expires: - '-1' pragma: @@ -2206,14 +2163,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2222,7 +2179,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:28 GMT + - Tue, 10 May 2022 04:56:35 GMT expires: - '-1' pragma: @@ -2254,14 +2211,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2270,7 +2227,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:58 GMT + - Tue, 10 May 2022 04:57:06 GMT expires: - '-1' pragma: @@ -2302,14 +2259,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2318,7 +2275,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:29 GMT + - Tue, 10 May 2022 04:57:36 GMT expires: - '-1' pragma: @@ -2350,14 +2307,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2366,7 +2323,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:58 GMT + - Tue, 10 May 2022 04:58:06 GMT expires: - '-1' pragma: @@ -2398,14 +2355,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2414,7 +2371,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:28 GMT + - Tue, 10 May 2022 04:58:36 GMT expires: - '-1' pragma: @@ -2446,14 +2403,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2462,7 +2419,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:58 GMT + - Tue, 10 May 2022 04:59:06 GMT expires: - '-1' pragma: @@ -2494,14 +2451,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2510,7 +2467,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:29 GMT + - Tue, 10 May 2022 04:59:36 GMT expires: - '-1' pragma: @@ -2542,14 +2499,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2558,7 +2515,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:59 GMT + - Tue, 10 May 2022 05:00:06 GMT expires: - '-1' pragma: @@ -2590,14 +2547,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2606,7 +2563,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:28 GMT + - Tue, 10 May 2022 05:00:36 GMT expires: - '-1' pragma: @@ -2638,14 +2595,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2654,7 +2611,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:58 GMT + - Tue, 10 May 2022 05:01:07 GMT expires: - '-1' pragma: @@ -2686,14 +2643,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" headers: cache-control: - no-cache @@ -2702,7 +2659,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:29 GMT + - Tue, 10 May 2022 05:01:37 GMT expires: - '-1' pragma: @@ -2734,15 +2691,111 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f880e55-cc8e-4480-99dc-f98069740ae3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"550e880f-8ecc-8044-99dc-f98069740ae3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:38:57.5566666Z\",\n \"endTime\": - \"2022-04-14T05:51:48.1320329Z\"\n }" + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 05:02:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Tue, 10 May 2022 05:02:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e793ef-ce44-43c8-aac3-ecac8889bcfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ef93e717-44ce-c843-aac3-ecac8889bcfd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:49:04.9466666Z\",\n \"endTime\": + \"2022-05-10T05:02:51.1383379Z\"\n }" headers: cache-control: - no-cache @@ -2751,7 +2804,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:59 GMT + - Tue, 10 May 2022 05:03:07 GMT expires: - '-1' pragma: @@ -2783,41 +2836,41 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4e6b5204.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-4e6b5204.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fbd05de0.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-fbd05de0.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -2825,7 +2878,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66a9d971-0f7a-43cf-9169-e4e3f51ab509\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/43146ab7-8f7b-44f9-a6d7-481869a4fcf2\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -2842,11 +2895,11 @@ interactions: cache-control: - no-cache content-length: - - '4368' + - '4354' content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:59 GMT + - Tue, 10 May 2022 05:03:07 GMT expires: - '-1' pragma: @@ -2878,10 +2931,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -2891,10 +2944,10 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 @@ -2902,20 +2955,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2686.220322\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1987' + - '1973' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:00 GMT + - Tue, 10 May 2022 05:03:08 GMT expires: - '-1' pragma: @@ -2949,26 +3002,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ea5a014-8d3b-4c86-b94f-0647c6d6a97e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/98c81e1b-3102-44c5-837f-e1a189c05d1a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:52:00 GMT + - Tue, 10 May 2022 05:03:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7ea5a014-8d3b-4c86-b94f-0647c6d6a97e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/98c81e1b-3102-44c5-837f-e1a189c05d1a?api-version=2016-03-30 pragma: - no-cache server: @@ -2978,7 +3031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml index c3c88863246..9de82f9224e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml @@ -1,22 +1,24 @@ interactions: - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttkedmzmgr-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg3nx3oduq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": + true}, "snapshotController": {"enabled": true}}}}' headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -26,39 +28,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1592' 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.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n @@ -70,22 +72,24 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\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://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3146' + - '3325' content-type: - application/json date: - - Mon, 18 Apr 2022 07:41:03 GMT + - Tue, 10 May 2022 04:42:34 GMT expires: - '-1' pragma: @@ -97,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -105,7 +109,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -118,14 +122,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -134,7 +138,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:41:34 GMT + - Tue, 10 May 2022 04:43:04 GMT expires: - '-1' pragma: @@ -156,7 +160,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -169,14 +173,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -185,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:42:04 GMT + - Tue, 10 May 2022 04:43:34 GMT expires: - '-1' pragma: @@ -207,7 +211,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -220,14 +224,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -236,7 +240,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:42:34 GMT + - Tue, 10 May 2022 04:44:04 GMT expires: - '-1' pragma: @@ -258,7 +262,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -271,14 +275,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -287,7 +291,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:43:04 GMT + - Tue, 10 May 2022 04:44:34 GMT expires: - '-1' pragma: @@ -309,7 +313,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -322,14 +326,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -338,7 +342,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:43:34 GMT + - Tue, 10 May 2022 04:45:04 GMT expires: - '-1' pragma: @@ -360,7 +364,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -373,14 +377,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -389,7 +393,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:44:04 GMT + - Tue, 10 May 2022 04:45:34 GMT expires: - '-1' pragma: @@ -411,7 +415,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -424,14 +428,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\"\n }" headers: cache-control: - no-cache @@ -440,7 +444,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:44:34 GMT + - Tue, 10 May 2022 04:46:04 GMT expires: - '-1' pragma: @@ -462,7 +466,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -475,15 +479,15 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f86f1793-597f-405d-9286-489567b98f68?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4e7c0e-0834-40dd-9d4a-f513ec430545?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"93176ff8-7f59-5d40-9286-489567b98f68\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-18T07:41:04.41Z\",\n \"endTime\": - \"2022-04-18T07:44:50.1855296Z\"\n }" + string: "{\n \"name\": \"0e7c4e2e-3408-dd40-9d4a-f513ec430545\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:42:34.44Z\",\n \"endTime\": + \"2022-05-10T04:46:30.2780136Z\"\n }" headers: cache-control: - no-cache @@ -492,7 +496,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:04 GMT + - Tue, 10 May 2022 04:46:34 GMT expires: - '-1' pragma: @@ -514,7 +518,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -527,39 +531,39 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -570,7 +574,7 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -578,11 +582,11 @@ interactions: cache-control: - no-cache content-length: - - '3799' + - '3792' content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:05 GMT + - Tue, 10 May 2022 04:46:35 GMT expires: - '-1' pragma: @@ -614,39 +618,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -657,7 +661,7 @@ interactions: \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\": - \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -665,11 +669,11 @@ interactions: cache-control: - no-cache content-length: - - '3799' + - '3792' content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:06 GMT + - Tue, 10 May 2022 04:46:36 GMT expires: - '-1' pragma: @@ -689,30 +693,31 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesttkedmzmgr-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestg3nx3oduq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8"}]}, "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}}}}' + true}}, "storageProfile": {"diskCSIDriver": {}, "fileCSIDriver": {}, "snapshotController": + {}}}}' headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -722,45 +727,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2494' + - '2575' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -770,22 +775,25 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\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\": true,\n + \ \"issuerURL\": \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717ac8d9-26d7-4013-aa38-6e2b27683cac?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92cf9a19-f35a-47bd-bb3e-62a6019a52ba?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3854' + - '4036' content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:08 GMT + - Tue, 10 May 2022 04:46:39 GMT expires: - '-1' pragma: @@ -801,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 200 message: OK @@ -809,7 +817,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -821,14 +829,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717ac8d9-26d7-4013-aa38-6e2b27683cac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92cf9a19-f35a-47bd-bb3e-62a6019a52ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9c87a71-d726-1340-aa38-6e2b27683cac\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:45:08.6033333Z\"\n }" + string: "{\n \"name\": \"199acf92-5af3-bd47-bb3e-62a6019a52ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:39.3033333Z\"\n }" headers: cache-control: - no-cache @@ -837,7 +845,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:45:38 GMT + - Tue, 10 May 2022 04:47:09 GMT expires: - '-1' pragma: @@ -859,7 +867,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -871,14 +879,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717ac8d9-26d7-4013-aa38-6e2b27683cac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92cf9a19-f35a-47bd-bb3e-62a6019a52ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9c87a71-d726-1340-aa38-6e2b27683cac\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:45:08.6033333Z\"\n }" + string: "{\n \"name\": \"199acf92-5af3-bd47-bb3e-62a6019a52ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:39.3033333Z\"\n }" headers: cache-control: - no-cache @@ -887,7 +895,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:46:08 GMT + - Tue, 10 May 2022 04:47:39 GMT expires: - '-1' pragma: @@ -909,7 +917,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -921,24 +929,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/717ac8d9-26d7-4013-aa38-6e2b27683cac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92cf9a19-f35a-47bd-bb3e-62a6019a52ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9c87a71-d726-1340-aa38-6e2b27683cac\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-18T07:45:08.6033333Z\",\n \"endTime\": - \"2022-04-18T07:46:24.356849Z\"\n }" + string: "{\n \"name\": \"199acf92-5af3-bd47-bb3e-62a6019a52ba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:46:39.3033333Z\",\n \"endTime\": + \"2022-05-10T04:47:48.3715271Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Mon, 18 Apr 2022 07:46:38 GMT + - Tue, 10 May 2022 04:48:09 GMT expires: - '-1' pragma: @@ -960,7 +968,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -972,39 +980,39 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1015,7 +1023,7 @@ interactions: \ \"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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -1023,11 +1031,11 @@ interactions: cache-control: - no-cache content-length: - - '3856' + - '3849' content-type: - application/json date: - - Mon, 18 Apr 2022 07:46:38 GMT + - Tue, 10 May 2022 04:48:09 GMT expires: - '-1' pragma: @@ -1059,39 +1067,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1102,7 +1110,7 @@ interactions: \ \"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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -1110,11 +1118,11 @@ interactions: cache-control: - no-cache content-length: - - '3856' + - '3849' content-type: - application/json date: - - Mon, 18 Apr 2022 07:46:39 GMT + - Tue, 10 May 2022 04:48:09 GMT expires: - '-1' pragma: @@ -1134,30 +1142,31 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.9", "dnsPrefix": - "cliakstest-clitesttkedmzmgr-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.6", "dnsPrefix": + "cliakstest-clitestg3nx3oduq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "currentOrchestratorVersion": "1.21.9", "powerState": {"code": - "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + "mode": "System", "orchestratorVersion": "1.22.6", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": - false}}}}' + false}}, "storageProfile": {"diskCSIDriver": {}, "fileCSIDriver": {}, "snapshotController": + {}}}}' headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -1167,45 +1176,45 @@ interactions: Connection: - keep-alive Content-Length: - - '2495' + - '2576' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1215,22 +1224,25 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\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\": true,\n + \ \"issuerURL\": \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6c27a4e-42bf-45fc-8816-3d6c5e3102ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/540176c8-e719-4825-a6ec-74e2d4c00bb0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3855' + - '4037' content-type: - application/json date: - - Mon, 18 Apr 2022 07:46:42 GMT + - Tue, 10 May 2022 04:48:11 GMT expires: - '-1' pragma: @@ -1246,7 +1258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' status: code: 200 message: OK @@ -1254,7 +1266,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -1266,14 +1278,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6c27a4e-42bf-45fc-8816-3d6c5e3102ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/540176c8-e719-4825-a6ec-74e2d4c00bb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4e7ac2a6-bf42-fc45-8816-3d6c5e3102ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:46:41.9333333Z\"\n }" + string: "{\n \"name\": \"c8760154-19e7-2548-a6ec-74e2d4c00bb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:12.4133333Z\"\n }" headers: cache-control: - no-cache @@ -1282,7 +1294,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:47:11 GMT + - Tue, 10 May 2022 04:48:41 GMT expires: - '-1' pragma: @@ -1304,7 +1316,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -1316,14 +1328,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6c27a4e-42bf-45fc-8816-3d6c5e3102ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/540176c8-e719-4825-a6ec-74e2d4c00bb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4e7ac2a6-bf42-fc45-8816-3d6c5e3102ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-18T07:46:41.9333333Z\"\n }" + string: "{\n \"name\": \"c8760154-19e7-2548-a6ec-74e2d4c00bb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:48:12.4133333Z\"\n }" headers: cache-control: - no-cache @@ -1332,7 +1344,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:47:41 GMT + - Tue, 10 May 2022 04:49:11 GMT expires: - '-1' pragma: @@ -1354,7 +1366,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -1366,15 +1378,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6c27a4e-42bf-45fc-8816-3d6c5e3102ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/540176c8-e719-4825-a6ec-74e2d4c00bb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4e7ac2a6-bf42-fc45-8816-3d6c5e3102ef\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-18T07:46:41.9333333Z\",\n \"endTime\": - \"2022-04-18T07:47:50.7653813Z\"\n }" + string: "{\n \"name\": \"c8760154-19e7-2548-a6ec-74e2d4c00bb0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:48:12.4133333Z\",\n \"endTime\": + \"2022-05-10T04:49:21.9072713Z\"\n }" headers: cache-control: - no-cache @@ -1383,7 +1395,7 @@ interactions: content-type: - application/json date: - - Mon, 18 Apr 2022 07:48:12 GMT + - Tue, 10 May 2022 04:49:42 GMT expires: - '-1' pragma: @@ -1405,7 +1417,7 @@ interactions: body: null headers: AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - '*/*' Accept-Encoding: @@ -1417,39 +1429,39 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttkedmzmgr-8ecadf\",\n \"fqdn\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttkedmzmgr-8ecadf-fd744287.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestg3nx3oduq-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestg3nx3oduq-8ecadf-36c3e7f7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDHmQBpwsevpFiCagT7DdJovt65tNIQuFg0nI90QTUG9objLgMETUfInYoUN00OrcHgElLpcQE0U2oTlv0oqgDP5q/iLUquOyuUPX3TXBqWHBYD0RdH73dDP3dmJI+qtNAEezrDMSGOw9GPjBKSAoFi3LA0VPc72fxbV9AwzrtSU3HzAikmxhOdNl2TkM5oCPGr5NgXmvfmirRztoosB4eBCWEYpvKDqiXYvEiOaxxwqkAhmuku4f/v6ioJqeEhgPewiuXQgXEZ63kob0y3AqKmpIGAf+NtwImOv2RsQso5sxPdSiC7ejRh5g01RyFUc8CD5I/lwZZhXwgpnjIv239N + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/dbf524a5-a289-4f29-b612-fdae921c030f\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2317ccd9-b64e-4b3e-b0d9-7fb830f0e8a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1460,7 +1472,7 @@ interactions: \ \"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 \"oidcIssuerProfile\": - {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/d0d3c3d2-bb2a-40d6-9118-b7ebf6c1bbea/\"\n + {\n \"enabled\": true,\n \"issuerURL\": \"https://oidc.prod-aks.azure.com/4bffca56-9d89-4a0a-8524-55bae0c13ac4/\"\n \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" @@ -1468,11 +1480,11 @@ interactions: cache-control: - no-cache content-length: - - '3857' + - '3850' content-type: - application/json date: - - Mon, 18 Apr 2022 07:48:12 GMT + - Tue, 10 May 2022 04:49:43 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml index 44dbe823521..3ac36b396f5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:38:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:46:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:38:03 GMT + - Tue, 10 May 2022 04:46:12 GMT expires: - '-1' pragma: @@ -44,18 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaekfi23b7-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestksickrhuf-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,39 +68,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1417' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaekfi23b7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestksickrhuf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -110,21 +112,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3055' + - '3234' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:06 GMT + - Tue, 10 May 2022 04:46:15 GMT expires: - '-1' pragma: @@ -136,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -155,23 +159,72 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 04: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 --nodepool-name --vm-set-type --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:36 GMT + - Tue, 10 May 2022 04:47:16 GMT expires: - '-1' pragma: @@ -204,23 +257,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:07 GMT + - Tue, 10 May 2022 04:47:46 GMT expires: - '-1' pragma: @@ -253,23 +306,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:36 GMT + - Tue, 10 May 2022 04:48:16 GMT expires: - '-1' pragma: @@ -302,23 +355,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:06 GMT + - Tue, 10 May 2022 04:48:46 GMT expires: - '-1' pragma: @@ -351,23 +404,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:36 GMT + - Tue, 10 May 2022 04:49:16 GMT expires: - '-1' pragma: @@ -400,23 +453,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:06 GMT + - Tue, 10 May 2022 04:49:46 GMT expires: - '-1' pragma: @@ -449,24 +502,24 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1555596a-506d-422b-a417-6f16309e6c0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64965f09-a419-418e-a356-56e5af98d99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6a595515-6d50-2b42-a417-6f16309e6c0b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:38:06.9Z\",\n \"endTime\": - \"2022-04-14T05:41:07.9658755Z\"\n }" + string: "{\n \"name\": \"095f9664-19a4-8e41-a356-56e5af98d99c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T04:46:16.16Z\",\n \"endTime\": + \"2022-05-10T04:50:08.8621354Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:36 GMT + - Tue, 10 May 2022 04:50:16 GMT expires: - '-1' pragma: @@ -499,39 +552,39 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaekfi23b7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestksickrhuf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/306de4f1-26b1-4b6b-8e1b-90576966f2e1\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a04f923f-dc1f-47f5-b64f-4d940d02fab2\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -549,11 +602,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:37 GMT + - Tue, 10 May 2022 04:50:17 GMT expires: - '-1' pragma: @@ -585,39 +638,39 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaekfi23b7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestksickrhuf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/306de4f1-26b1-4b6b-8e1b-90576966f2e1\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a04f923f-dc1f-47f5-b64f-4d940d02fab2\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -635,11 +688,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:38 GMT + - Tue, 10 May 2022 04:50:17 GMT expires: - '-1' pragma: @@ -673,10 +726,10 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/upgradeNodeImageVersion?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -686,26 +739,26 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59a5e728-f3c7-41c7-8a2d-f8cdda154f1b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c8a8023-7be6-4a57-814c-a504b4c960a6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '941' + - '934' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:38 GMT + - Tue, 10 May 2022 04:50:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/59a5e728-f3c7-41c7-8a2d-f8cdda154f1b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1c8a8023-7be6-4a57-814c-a504b4c960a6?api-version=2016-03-30 pragma: - no-cache server: @@ -733,39 +786,39 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestaekfi23b7-8ecadf\",\n \"fqdn\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestaekfi23b7-8ecadf-d6131bef.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestksickrhuf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestksickrhuf-8ecadf-c060cab5.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/306de4f1-26b1-4b6b-8e1b-90576966f2e1\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a04f923f-dc1f-47f5-b64f-4d940d02fab2\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -783,11 +836,11 @@ interactions: cache-control: - no-cache content-length: - - '3724' + - '3717' content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:38 GMT + - Tue, 10 May 2022 04:50:18 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml index 8c46e870b05..1bb30196f78 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-04-14T05:32:25Z"},"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","date":"2022-05-10T05:02:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Apr 2022 05:32:25 GMT + - Tue, 10 May 2022 05:02:18 GMT expires: - '-1' pragma: @@ -44,18 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyi7j53d2v-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrng6dypxn-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}}}' headers: Accept: - application/json @@ -66,39 +68,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1417' + - '1550' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyi7j53d2v-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyi7j53d2v-8ecadf-912a8443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyi7j53d2v-8ecadf-912a8443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestrng6dypxn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestrng6dypxn-8ecadf-b80badf8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrng6dypxn-8ecadf-b80badf8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n @@ -110,21 +112,23 @@ interactions: \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3055' + - '3234' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:28 GMT + - Tue, 10 May 2022 05:02:23 GMT expires: - '-1' pragma: @@ -136,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 201 message: Created @@ -155,23 +159,121 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 05:02: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 --vm-set-type --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Tue, 10 May 2022 05:03: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 --nodepool-name --vm-set-type --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:57 GMT + - Tue, 10 May 2022 05:03:53 GMT expires: - '-1' pragma: @@ -204,23 +306,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:28 GMT + - Tue, 10 May 2022 05:04:23 GMT expires: - '-1' pragma: @@ -253,23 +355,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:58 GMT + - Tue, 10 May 2022 05:04:53 GMT expires: - '-1' pragma: @@ -302,23 +404,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:27 GMT + - Tue, 10 May 2022 05:05:23 GMT expires: - '-1' pragma: @@ -351,23 +453,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:58 GMT + - Tue, 10 May 2022 05:05:53 GMT expires: - '-1' pragma: @@ -400,23 +502,23 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:28 GMT + - Tue, 10 May 2022 05:06:24 GMT expires: - '-1' pragma: @@ -449,24 +551,24 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e0ef647-3164-483c-88a8-2340550b9ab7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/211970f6-cb14-41b7-b38c-8b40661112f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47f60e7e-6431-3c48-88a8-2340550b9ab7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:32:28.3166666Z\",\n \"endTime\": - \"2022-04-14T05:35:45.1860949Z\"\n }" + string: "{\n \"name\": \"f6701921-14cb-b741-b38c-8b40661112f8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T05:02:23.52Z\",\n \"endTime\": + \"2022-05-10T05:06:27.6030739Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:58 GMT + - Tue, 10 May 2022 05:06:54 GMT expires: - '-1' pragma: @@ -499,39 +601,39 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.9\",\n \"currentKubernetesVersion\": \"1.21.9\",\n \"dnsPrefix\": - \"cliakstest-clitestyi7j53d2v-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyi7j53d2v-8ecadf-912a8443.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestyi7j53d2v-8ecadf-912a8443.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": + \"cliakstest-clitestrng6dypxn-8ecadf\",\n \"fqdn\": \"cliakstest-clitestrng6dypxn-8ecadf-b80badf8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrng6dypxn-8ecadf-b80badf8.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 \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.21.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/72f06212-5a1b-4a81-a3b0-5ba1771d1ad5\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40abd07b-2b55-4da6-b53b-705640dca28c\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -549,11 +651,11 @@ interactions: cache-control: - no-cache content-length: - - '3708' + - '3701' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:59 GMT + - Tue, 10 May 2022 05:06:54 GMT expires: - '-1' pragma: @@ -587,10 +689,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-image-only --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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/upgradeNodeImageVersion?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -600,26 +702,26 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e3d89ff-75a5-4071-bd88-d0da786da77b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f692a910-aec5-4010-bff2-30d3aab21474?api-version=2016-03-30 cache-control: - no-cache content-length: - - '941' + - '934' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:59 GMT + - Tue, 10 May 2022 05:06:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7e3d89ff-75a5-4071-bd88-d0da786da77b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f692a910-aec5-4010-bff2-30d3aab21474?api-version=2016-03-30 pragma: - no-cache server: @@ -647,10 +749,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -660,20 +762,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.21.9\",\n + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '941' + - '934' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:00 GMT + - Tue, 10 May 2022 05:06:55 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml index e4bf9a136e5..d6db5d14df4 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0 Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0 Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -22,45 +22,39 @@ interactions: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.13\",\n \"upgrades\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.7\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.20.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.21.7\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.20.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.7\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.21.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.21.7\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.21.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.22.6\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.22.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.22.6\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.23.3\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.22.6\",\n \"upgrades\": [\n {\n + \"1.21.9\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.4\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.3\"\n },\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.3\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \"1.23.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.3\",\n \"isPreview\": true\n }\n ]\n }\n }" + \"1.23.5\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '2022' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:33 GMT + - Tue, 10 May 2022 05:03:09 GMT expires: - '-1' pragma: @@ -87,12 +81,13 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + false, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}}}' headers: Accept: - application/json @@ -103,7 +98,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1373' + - '1506' Content-Type: - application/json ParameterSetName: @@ -111,10 +106,10 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -122,21 +117,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7d052d1b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7d052d1b.portal.hcp.westus2.azmk8s.io\",\n + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9fc1fefb.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-9fc1fefb.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -148,22 +143,24 @@ interactions: \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3010' + - '3189' content-type: - application/json date: - - Thu, 14 Apr 2022 05:31:36 GMT + - Tue, 10 May 2022 05:03:12 GMT expires: - '-1' pragma: @@ -175,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1195' status: code: 201 message: Created @@ -195,23 +192,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:07 GMT + - Tue, 10 May 2022 05:03:42 GMT expires: - '-1' pragma: @@ -245,23 +242,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:32:36 GMT + - Tue, 10 May 2022 05:04:12 GMT expires: - '-1' pragma: @@ -295,23 +292,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:06 GMT + - Tue, 10 May 2022 05:04:43 GMT expires: - '-1' pragma: @@ -345,23 +342,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:33:36 GMT + - Tue, 10 May 2022 05:05:13 GMT expires: - '-1' pragma: @@ -395,23 +392,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:07 GMT + - Tue, 10 May 2022 05:05:43 GMT expires: - '-1' pragma: @@ -445,23 +442,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:34:37 GMT + - Tue, 10 May 2022 05:06:13 GMT expires: - '-1' pragma: @@ -495,23 +492,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e98cc4a-e485-416f-9b09-4f7ae3f4836f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" + string: "{\n \"name\": \"4acc981e-85e4-6f41-9b09-4f7ae3f4836f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T05:03:13.21Z\",\n \"endTime\": + \"2022-05-10T05:06:32.6070845Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:35:06 GMT + - Tue, 10 May 2022 05:06:43 GMT expires: - '-1' pragma: @@ -545,161 +543,10 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --kubernetes-version --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --kubernetes-version --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddced2da-a5c3-4e0b-9428-c8cf3cf834b3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dad2cedd-c3a5-0b4e-9428-c8cf3cf834b3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:31:36.6266666Z\",\n \"endTime\": - \"2022-04-14T05:36:16.7215109Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --kubernetes-version --ssh-key-value - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -707,21 +554,21 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7d052d1b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7d052d1b.portal.hcp.westus2.azmk8s.io\",\n + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9fc1fefb.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-9fc1fefb.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -729,7 +576,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/29f88a91-6123-42b7-91f2-db484e86936c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d2dec1b-5d8a-41f7-aadb-d05abf5d6b1b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -746,11 +593,11 @@ interactions: cache-control: - no-cache content-length: - - '3663' + - '3656' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:37 GMT + - Tue, 10 May 2022 05:06:44 GMT expires: - '-1' pragma: @@ -782,10 +629,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2022-04-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -795,20 +642,20 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.04.19\",\n \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1009' + - '1002' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:38 GMT + - Tue, 10 May 2022 05:06:44 GMT expires: - '-1' pragma: @@ -848,10 +695,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -861,21 +708,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\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/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 cache-control: - no-cache content-length: - - '916' + - '909' content-type: - application/json date: - - Thu, 14 Apr 2022 05:36:41 GMT + - Tue, 10 May 2022 05:06:48 GMT expires: - '-1' pragma: @@ -887,7 +734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1193' status: code: 201 message: Created @@ -905,14 +752,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -921,7 +768,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:11 GMT + - Tue, 10 May 2022 05:07:18 GMT expires: - '-1' pragma: @@ -953,14 +800,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -969,7 +816,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:37:41 GMT + - Tue, 10 May 2022 05:07:48 GMT expires: - '-1' pragma: @@ -1001,14 +848,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1017,7 +864,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:12 GMT + - Tue, 10 May 2022 05:08:18 GMT expires: - '-1' pragma: @@ -1049,14 +896,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1065,7 +912,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:38:41 GMT + - Tue, 10 May 2022 05:08:48 GMT expires: - '-1' pragma: @@ -1097,14 +944,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1113,7 +960,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:11 GMT + - Tue, 10 May 2022 05:09:19 GMT expires: - '-1' pragma: @@ -1145,14 +992,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1161,7 +1008,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:39:42 GMT + - Tue, 10 May 2022 05:09:49 GMT expires: - '-1' pragma: @@ -1193,14 +1040,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1209,7 +1056,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:12 GMT + - Tue, 10 May 2022 05:10:19 GMT expires: - '-1' pragma: @@ -1241,14 +1088,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1257,7 +1104,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:40:41 GMT + - Tue, 10 May 2022 05:10:48 GMT expires: - '-1' pragma: @@ -1289,14 +1136,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1305,7 +1152,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:12 GMT + - Tue, 10 May 2022 05:11:18 GMT expires: - '-1' pragma: @@ -1337,14 +1184,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1353,7 +1200,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:41:42 GMT + - Tue, 10 May 2022 05:11:49 GMT expires: - '-1' pragma: @@ -1385,14 +1232,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\"\n }" headers: cache-control: - no-cache @@ -1401,7 +1248,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:11 GMT + - Tue, 10 May 2022 05:12:19 GMT expires: - '-1' pragma: @@ -1433,24 +1280,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ba2b939-5387-4047-ada7-cc105829421a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84e2d2b6-ac2f-41d6-8c89-ffd484f6da93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"39b9a25b-8753-4740-ada7-cc105829421a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:36:42.0233333Z\",\n \"endTime\": - \"2022-04-14T05:42:40.416399Z\"\n }" + string: "{\n \"name\": \"b6d2e284-2fac-d641-8c89-ffd484f6da93\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T05:06:48.9366666Z\",\n \"endTime\": + \"2022-05-10T05:12:45.8529964Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:42 GMT + - Tue, 10 May 2022 05:12:49 GMT expires: - '-1' pragma: @@ -1482,10 +1329,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1495,19 +1342,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '917' + - '910' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:43 GMT + - Tue, 10 May 2022 05:12:49 GMT expires: - '-1' pragma: @@ -1539,10 +1386,10 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1550,30 +1397,30 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7d052d1b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7d052d1b.portal.hcp.westus2.azmk8s.io\",\n + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9fc1fefb.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-9fc1fefb.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2803.220428\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1581,7 +1428,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/29f88a91-6123-42b7-91f2-db484e86936c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d2dec1b-5d8a-41f7-aadb-d05abf5d6b1b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1598,11 +1445,11 @@ interactions: cache-control: - no-cache content-length: - - '4368' + - '4354' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:43 GMT + - Tue, 10 May 2022 05:12:50 GMT expires: - '-1' pragma: @@ -1622,21 +1469,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.23.3", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.23.5", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.23.3", "currentOrchestratorVersion": "1.22.6", "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", "workloadRuntime": - "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.23.3", - "currentOrchestratorVersion": "1.22.6", "upgradeSettings": {}, "powerState": + "1.23.5", "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", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": + "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": + "User", "orchestratorVersion": "1.23.5", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": true}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": @@ -1644,7 +1490,7 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/29f88a91-6123-42b7-91f2-db484e86936c"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d2dec1b-5d8a-41f7-aadb-d05abf5d6b1b"}]}, "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"}}, @@ -1659,47 +1505,47 @@ interactions: Connection: - keep-alive Content-Length: - - '2948' + - '2868' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.22.6\",\n \"currentKubernetesVersion\": \"1.23.3\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7d052d1b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7d052d1b.portal.hcp.westus2.azmk8s.io\",\n + \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9fc1fefb.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-9fc1fefb.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Upgrading\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Upgrading\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-containerd-17763.2803.220428\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -1707,7 +1553,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/29f88a91-6123-42b7-91f2-db484e86936c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d2dec1b-5d8a-41f7-aadb-d05abf5d6b1b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -1716,21 +1562,23 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\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 },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4379' + - '4551' content-type: - application/json date: - - Thu, 14 Apr 2022 05:42:45 GMT + - Tue, 10 May 2022 05:12:53 GMT expires: - '-1' pragma: @@ -1746,55 +1594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks upgrade - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubernetes-version --yes - User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '120' - content-type: - - application/json - date: - - Thu, 14 Apr 2022 05: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 + - '1194' status: code: 200 message: OK @@ -1812,23 +1612,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:43:45 GMT + - Tue, 10 May 2022 05:13:23 GMT expires: - '-1' pragma: @@ -1860,23 +1660,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:16 GMT + - Tue, 10 May 2022 05:13:53 GMT expires: - '-1' pragma: @@ -1908,23 +1708,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:44:46 GMT + - Tue, 10 May 2022 05:14:23 GMT expires: - '-1' pragma: @@ -1956,23 +1756,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:16 GMT + - Tue, 10 May 2022 05:14:53 GMT expires: - '-1' pragma: @@ -2004,23 +1804,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:45:46 GMT + - Tue, 10 May 2022 05:15:23 GMT expires: - '-1' pragma: @@ -2052,23 +1852,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:16 GMT + - Tue, 10 May 2022 05:15:53 GMT expires: - '-1' pragma: @@ -2100,23 +1900,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:46:47 GMT + - Tue, 10 May 2022 05:16:24 GMT expires: - '-1' pragma: @@ -2148,23 +1948,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:16 GMT + - Tue, 10 May 2022 05:16:54 GMT expires: - '-1' pragma: @@ -2196,23 +1996,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:47:46 GMT + - Tue, 10 May 2022 05:17:23 GMT expires: - '-1' pragma: @@ -2244,23 +2044,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:16 GMT + - Tue, 10 May 2022 05:17:53 GMT expires: - '-1' pragma: @@ -2292,23 +2092,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:48:47 GMT + - Tue, 10 May 2022 05:18:23 GMT expires: - '-1' pragma: @@ -2340,23 +2140,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:16 GMT + - Tue, 10 May 2022 05:18:54 GMT expires: - '-1' pragma: @@ -2388,23 +2188,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:49:46 GMT + - Tue, 10 May 2022 05:19:24 GMT expires: - '-1' pragma: @@ -2436,23 +2236,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:16 GMT + - Tue, 10 May 2022 05:19:54 GMT expires: - '-1' pragma: @@ -2484,23 +2284,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:50:47 GMT + - Tue, 10 May 2022 05:20:24 GMT expires: - '-1' pragma: @@ -2532,23 +2332,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:17 GMT + - Tue, 10 May 2022 05:20:54 GMT expires: - '-1' pragma: @@ -2580,23 +2380,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:51:47 GMT + - Tue, 10 May 2022 05:21:24 GMT expires: - '-1' pragma: @@ -2628,23 +2428,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:17 GMT + - Tue, 10 May 2022 05:21:54 GMT expires: - '-1' pragma: @@ -2676,23 +2476,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:47 GMT + - Tue, 10 May 2022 05:22:24 GMT expires: - '-1' pragma: @@ -2724,23 +2524,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:17 GMT + - Tue, 10 May 2022 05:22:54 GMT expires: - '-1' pragma: @@ -2772,23 +2572,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:48 GMT + - Tue, 10 May 2022 05:23:24 GMT expires: - '-1' pragma: @@ -2820,23 +2620,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:54:17 GMT + - Tue, 10 May 2022 05:23:55 GMT expires: - '-1' pragma: @@ -2868,23 +2668,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:54:47 GMT + - Tue, 10 May 2022 05:24:24 GMT expires: - '-1' pragma: @@ -2916,23 +2716,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:55:18 GMT + - Tue, 10 May 2022 05:24:54 GMT expires: - '-1' pragma: @@ -2964,23 +2764,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:55:48 GMT + - Tue, 10 May 2022 05:25:24 GMT expires: - '-1' pragma: @@ -3012,23 +2812,23 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 14 Apr 2022 05:56:17 GMT + - Tue, 10 May 2022 05:25:55 GMT expires: - '-1' pragma: @@ -3060,24 +2860,24 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17cdbc28-cf82-4a09-ba97-57da10470bff?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bee646ed-a2e2-49f4-9960-d530d90d0a00?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28bccd17-82cf-094a-ba97-57da10470bff\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:42:46.2Z\",\n \"endTime\": - \"2022-04-14T05:56:20.3636261Z\"\n }" + string: "{\n \"name\": \"ed46e6be-e2a2-f449-9960-d530d90d0a00\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T05:12:53.53Z\",\n \"endTime\": + \"2022-05-10T05:26:12.0013419Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Thu, 14 Apr 2022 05:56:48 GMT + - Tue, 10 May 2022 05:26:25 GMT expires: - '-1' pragma: @@ -3109,41 +2909,41 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.23.3\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7d052d1b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7d052d1b.portal.hcp.westus2.azmk8s.io\",\n + \"1.23.5\",\n \"currentKubernetesVersion\": \"1.23.5\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9fc1fefb.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-9fc1fefb.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.03.29\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2022.04.19\",\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 \"workloadRuntime\": \"OCIContainer\",\n \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"currentOrchestratorVersion\": - \"1.23.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2686.220322\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLdaun1GPmELROrLmG67+ItXDLcnRD7OCuaXCGdWFneMgqftElrhf0x0zlYjq1XzzDbHsgggcknCg2wwmaJYfqfbyicLixda+M2CxxVNu4ghKIaJ93xsimEgfD+hFdqogwKuB2C7tJr73sgFQhppae0OcbBCETCp3Sp0xmtozdpke0f0YOU8Xqf9J2nOv97+Ot8XOWjowLbQXQm63SrlGS+UkvxHX30UnJzLo6pVSYVVjL+Qu1a6qGMaMIyTSCRpm8aUaixl0xv71eHLH8LkWqDQFFB7Yp4+reIIJIArrdWb6t6zfZ8YKw+xNnafngbUboJUxRYP+lzeiRmVC3zN0L + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-containerd-17763.2803.220428\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl5mpv51nDwg63jdXOCZTU8bqiGzaJ8s/qwDudJbAVTi+TKDiVC/x6GG5cDjzSzKKPRtlumnYoAC3U35T/qV0wEznRZ9WL3mk46r96gIqJt1JyQiAPk6ImovK89USm6hFLji7mEJRF8tJkGjgR+N5blbtU0hCytxM2VGZfW5u8oLNdlQSGsy9QKq8TItUy1ra8i02maSZHQFdEuHwxbjimi5IgUWXug+IwCqInTMiMBYaoSnmnQ8tZPPmxAfMDQKcHiHYO6YuNJSrvNfTgszdmUiZ8V8APMIFfkcOtKsicjOj6AzKjb+Zo1WFqQSFcoyJFXNTYgPPRCfEzYPhNa1hD 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 @@ -3151,7 +2951,7 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/29f88a91-6123-42b7-91f2-db484e86936c\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d2dec1b-5d8a-41f7-aadb-d05abf5d6b1b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n @@ -3168,11 +2968,11 @@ interactions: cache-control: - no-cache content-length: - - '4379' + - '4365' content-type: - application/json date: - - Thu, 14 Apr 2022 05:56:48 GMT + - Tue, 10 May 2022 05:26:25 GMT expires: - '-1' pragma: @@ -3204,10 +3004,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3217,19 +3017,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.23.3\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '928' + - '921' content-type: - application/json date: - - Thu, 14 Apr 2022 05:56:49 GMT + - Tue, 10 May 2022 05:26:26 GMT expires: - '-1' pragma: @@ -3251,10 +3051,9 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", - "mode": "User", "orchestratorVersion": "1.23.3", "currentOrchestratorVersion": - "1.23.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false}}' + "mode": "User", "orchestratorVersion": "1.23.5", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - application/json @@ -3265,18 +3064,18 @@ interactions: Connection: - keep-alive Content-Length: - - '516' + - '476' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3286,21 +3085,21 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.23.3\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2803.220428\",\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/f19bceff-2fc9-440a-a5aa-0720a40ce094?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3033d441-1e0c-4de0-b61f-306dd401b429?api-version=2016-03-30 cache-control: - no-cache content-length: - - '927' + - '920' content-type: - application/json date: - - Thu, 14 Apr 2022 05:56:51 GMT + - Tue, 10 May 2022 05:26:29 GMT expires: - '-1' pragma: @@ -3316,7 +3115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' status: code: 200 message: OK @@ -3334,17 +3133,17 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f19bceff-2fc9-440a-a5aa-0720a40ce094?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3033d441-1e0c-4de0-b61f-306dd401b429?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffce9bf1-c92f-0a44-a5aa-0720a40ce094\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-04-14T05:56:51.7933333Z\",\n \"endTime\": - \"2022-04-14T05:57:01.9674036Z\"\n }" + string: "{\n \"name\": \"41d43330-0c1e-e04d-b61f-306dd401b429\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2022-05-10T05:26:29.2166666Z\",\n \"endTime\": + \"2022-05-10T05:26:38.4277389Z\"\n }" headers: cache-control: - no-cache @@ -3353,7 +3152,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:57:21 GMT + - Tue, 10 May 2022 05:26:59 GMT expires: - '-1' pragma: @@ -3385,12 +3184,12 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2022-04-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3400,19 +3199,19 @@ interactions: \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"currentOrchestratorVersion\": \"1.23.3\",\n \"enableNodePublicIP\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.23.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2686.220322\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.2803.220428\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '928' + - '921' content-type: - application/json date: - - Thu, 14 Apr 2022 05:57:21 GMT + - Tue, 10 May 2022 05:26:59 GMT expires: - '-1' pragma: @@ -3446,26 +3245,26 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-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=2022-03-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2022-04-02-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0175da97-6fbd-4f6f-a2d9-8e3749f8c7ce?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37fd67f-8d36-4495-a5d2-02dce64b317f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 14 Apr 2022 05:57:22 GMT + - Tue, 10 May 2022 05:27:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0175da97-6fbd-4f6f-a2d9-8e3749f8c7ce?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a37fd67f-8d36-4495-a5d2-02dce64b317f?api-version=2016-03-30 pragma: - no-cache server: @@ -3475,7 +3274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml index 719c2e400f2..1e121031a34 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml @@ -13,10 +13,10 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0b Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/osOptions/default?api-version=2022-03-02-preview&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/osOptions/default?api-version=2022-04-02-preview&resource-type=managedClusters response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/osOptions/default\",\n @@ -37,7 +37,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Apr 2022 05:53:23 GMT + - Tue, 10 May 2022 04:48:39 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml index ca10fd7d1db..ba6cdee09d3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-containerservice/18.0.0 Python/3.8.10 - (Linux-5.13.0-1021-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-containerservice/19.0.0 Python/3.8.10 + (Linux-5.13.0-1022-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -22,45 +22,39 @@ interactions: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.13\",\n \"upgrades\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.7\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.20.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.21.7\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.20.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.7\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.21.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.21.7\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.21.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.22.6\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.22.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.22.6\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.23.3\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.22.6\",\n \"upgrades\": [\n {\n + \"1.21.9\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.4\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.6\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.4\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.3\"\n },\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.3\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \"1.23.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.6\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.23.3\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.23.5\"\n }\n ]\n },\n {\n \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.3\",\n \"isPreview\": true\n }\n ]\n }\n }" + \"1.23.5\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '2022' content-type: - application/json date: - - Thu, 14 Apr 2022 05:52:01 GMT + - Tue, 10 May 2022 04:51:28 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py index 5322796de50..b3a00e356f8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py @@ -1668,8 +1668,9 @@ def test_aks_nodepool_snapshot(self, resource_group, resource_group_location): ]) @AllowLargeResponse() - @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westcentralus', preserve_default_location=True) def test_aks_snapshot(self, resource_group, resource_group_location): + print(resource_group_location) create_version, upgrade_version = self._get_versions( resource_group_location) aks_name = self.create_random_name('cliakstest', 16) @@ -3991,7 +3992,7 @@ def test_aks_update_with_azurekeyvaultkms(self, resource_group, resource_group_l ]) @AllowLargeResponse() - @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap') + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westcentralus') def test_aks_create_and_update_with_csi_drivers_extensibility(self, resource_group, resource_group_location): aks_name = self.create_random_name('cliakstest', 16) self.kwargs.update({ @@ -4040,7 +4041,7 @@ def test_aks_create_and_update_with_csi_drivers_extensibility(self, resource_gro ]) @AllowLargeResponse() - @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap') + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westcentralus') def test_aks_create_with_standard_csi_drivers(self, resource_group, resource_group_location): aks_name = self.create_random_name('cliakstest', 16) self.kwargs.update({ diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py index 6146fa91e7c..518ad9d2e7e 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py @@ -11,10 +11,11 @@ from typing import TYPE_CHECKING +from msrest import Deserializer, Serializer + from azure.mgmt.core import ARMPipelineClient from azure.profiles import KnownProfiles, ProfileDefinition from azure.profiles.multiapiclient import MultiApiClientMixin -from msrest import Deserializer, Serializer from ._configuration import ContainerServiceClientConfiguration @@ -55,7 +56,7 @@ class ContainerServiceClient(MultiApiClientMixin, _SDKClient): :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ - DEFAULT_API_VERSION = '2022-03-02-preview' + DEFAULT_API_VERSION = '2022-03-01' _PROFILE_TAG = "azure.mgmt.containerservice.ContainerServiceClient" LATEST_PROFILE = ProfileDefinition({ _PROFILE_TAG: { @@ -124,7 +125,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2022-01-02-preview: :mod:`v2022_01_02_preview.models` * 2022-02-01: :mod:`v2022_02_01.models` * 2022-02-02-preview: :mod:`v2022_02_02_preview.models` + * 2022-03-01: :mod:`v2022_03_01.models` * 2022-03-02-preview: :mod:`v2022_03_02_preview.models` + * 2022-04-02-preview: :mod:`v2022_04_02_preview.models` """ if api_version == '2017-07-01': from .v2017_07_01 import models @@ -228,9 +231,15 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2022-02-02-preview': from .v2022_02_02_preview import models return models + elif api_version == '2022-03-01': + from .v2022_03_01 import models + return models elif api_version == '2022-03-02-preview': from .v2022_03_02_preview import models return models + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview import models + return models raise ValueError("API version {} is not available".format(api_version)) @property @@ -264,7 +273,9 @@ def agent_pools(self): * 2022-01-02-preview: :class:`AgentPoolsOperations` * 2022-02-01: :class:`AgentPoolsOperations` * 2022-02-02-preview: :class:`AgentPoolsOperations` + * 2022-03-01: :class:`AgentPoolsOperations` * 2022-03-02-preview: :class:`AgentPoolsOperations` + * 2022-04-02-preview: :class:`AgentPoolsOperations` """ api_version = self._get_api_version('agent_pools') if api_version == '2019-02-01': @@ -321,8 +332,12 @@ def agent_pools(self): from .v2022_02_01.operations import AgentPoolsOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import AgentPoolsOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import AgentPoolsOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import AgentPoolsOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import AgentPoolsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'agent_pools'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -357,7 +372,9 @@ def maintenance_configurations(self): * 2022-01-02-preview: :class:`MaintenanceConfigurationsOperations` * 2022-02-01: :class:`MaintenanceConfigurationsOperations` * 2022-02-02-preview: :class:`MaintenanceConfigurationsOperations` + * 2022-03-01: :class:`MaintenanceConfigurationsOperations` * 2022-03-02-preview: :class:`MaintenanceConfigurationsOperations` + * 2022-04-02-preview: :class:`MaintenanceConfigurationsOperations` """ api_version = self._get_api_version('maintenance_configurations') if api_version == '2020-12-01': @@ -386,8 +403,12 @@ def maintenance_configurations(self): from .v2022_02_01.operations import MaintenanceConfigurationsOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import MaintenanceConfigurationsOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import MaintenanceConfigurationsOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import MaintenanceConfigurationsOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import MaintenanceConfigurationsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'maintenance_configurations'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -398,12 +419,15 @@ def managed_cluster_snapshots(self): * 2022-02-02-preview: :class:`ManagedClusterSnapshotsOperations` * 2022-03-02-preview: :class:`ManagedClusterSnapshotsOperations` + * 2022-04-02-preview: :class:`ManagedClusterSnapshotsOperations` """ api_version = self._get_api_version('managed_cluster_snapshots') if api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import ManagedClusterSnapshotsOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import ManagedClusterSnapshotsOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import ManagedClusterSnapshotsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'managed_cluster_snapshots'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -441,7 +465,9 @@ def managed_clusters(self): * 2022-01-02-preview: :class:`ManagedClustersOperations` * 2022-02-01: :class:`ManagedClustersOperations` * 2022-02-02-preview: :class:`ManagedClustersOperations` + * 2022-03-01: :class:`ManagedClustersOperations` * 2022-03-02-preview: :class:`ManagedClustersOperations` + * 2022-04-02-preview: :class:`ManagedClustersOperations` """ api_version = self._get_api_version('managed_clusters') if api_version == '2018-03-31': @@ -502,8 +528,12 @@ def managed_clusters(self): from .v2022_02_01.operations import ManagedClustersOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import ManagedClustersOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import ManagedClustersOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import ManagedClustersOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import ManagedClustersOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'managed_clusters'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -563,7 +593,9 @@ def operations(self): * 2022-01-02-preview: :class:`Operations` * 2022-02-01: :class:`Operations` * 2022-02-02-preview: :class:`Operations` + * 2022-03-01: :class:`Operations` * 2022-03-02-preview: :class:`Operations` + * 2022-04-02-preview: :class:`Operations` """ api_version = self._get_api_version('operations') if api_version == '2018-03-31': @@ -624,8 +656,12 @@ def operations(self): from .v2022_02_01.operations import Operations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import Operations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import Operations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import Operations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import Operations as OperationClass else: raise ValueError("API version {} does not have operation group 'operations'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -651,7 +687,9 @@ def private_endpoint_connections(self): * 2022-01-02-preview: :class:`PrivateEndpointConnectionsOperations` * 2022-02-01: :class:`PrivateEndpointConnectionsOperations` * 2022-02-02-preview: :class:`PrivateEndpointConnectionsOperations` + * 2022-03-01: :class:`PrivateEndpointConnectionsOperations` * 2022-03-02-preview: :class:`PrivateEndpointConnectionsOperations` + * 2022-04-02-preview: :class:`PrivateEndpointConnectionsOperations` """ api_version = self._get_api_version('private_endpoint_connections') if api_version == '2020-06-01': @@ -688,8 +726,12 @@ def private_endpoint_connections(self): from .v2022_02_01.operations import PrivateEndpointConnectionsOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import PrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import PrivateEndpointConnectionsOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import PrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import PrivateEndpointConnectionsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'private_endpoint_connections'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -713,7 +755,9 @@ def private_link_resources(self): * 2022-01-02-preview: :class:`PrivateLinkResourcesOperations` * 2022-02-01: :class:`PrivateLinkResourcesOperations` * 2022-02-02-preview: :class:`PrivateLinkResourcesOperations` + * 2022-03-01: :class:`PrivateLinkResourcesOperations` * 2022-03-02-preview: :class:`PrivateLinkResourcesOperations` + * 2022-04-02-preview: :class:`PrivateLinkResourcesOperations` """ api_version = self._get_api_version('private_link_resources') if api_version == '2020-09-01': @@ -746,8 +790,12 @@ def private_link_resources(self): from .v2022_02_01.operations import PrivateLinkResourcesOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import PrivateLinkResourcesOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import PrivateLinkResourcesOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import PrivateLinkResourcesOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import PrivateLinkResourcesOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'private_link_resources'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -771,7 +819,9 @@ def resolve_private_link_service_id(self): * 2022-01-02-preview: :class:`ResolvePrivateLinkServiceIdOperations` * 2022-02-01: :class:`ResolvePrivateLinkServiceIdOperations` * 2022-02-02-preview: :class:`ResolvePrivateLinkServiceIdOperations` + * 2022-03-01: :class:`ResolvePrivateLinkServiceIdOperations` * 2022-03-02-preview: :class:`ResolvePrivateLinkServiceIdOperations` + * 2022-04-02-preview: :class:`ResolvePrivateLinkServiceIdOperations` """ api_version = self._get_api_version('resolve_private_link_service_id') if api_version == '2020-09-01': @@ -804,8 +854,12 @@ def resolve_private_link_service_id(self): from .v2022_02_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import ResolvePrivateLinkServiceIdOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import ResolvePrivateLinkServiceIdOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import ResolvePrivateLinkServiceIdOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'resolve_private_link_service_id'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -822,7 +876,9 @@ def snapshots(self): * 2022-01-02-preview: :class:`SnapshotsOperations` * 2022-02-01: :class:`SnapshotsOperations` * 2022-02-02-preview: :class:`SnapshotsOperations` + * 2022-03-01: :class:`SnapshotsOperations` * 2022-03-02-preview: :class:`SnapshotsOperations` + * 2022-04-02-preview: :class:`SnapshotsOperations` """ api_version = self._get_api_version('snapshots') if api_version == '2021-08-01': @@ -841,12 +897,42 @@ def snapshots(self): from .v2022_02_01.operations import SnapshotsOperations as OperationClass elif api_version == '2022-02-02-preview': from .v2022_02_02_preview.operations import SnapshotsOperations as OperationClass + elif api_version == '2022-03-01': + from .v2022_03_01.operations import SnapshotsOperations as OperationClass elif api_version == '2022-03-02-preview': from .v2022_03_02_preview.operations import SnapshotsOperations as OperationClass + elif api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import SnapshotsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'snapshots'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property + def trusted_access_role_bindings(self): + """Instance depends on the API version: + + * 2022-04-02-preview: :class:`TrustedAccessRoleBindingsOperations` + """ + api_version = self._get_api_version('trusted_access_role_bindings') + if api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import TrustedAccessRoleBindingsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'trusted_access_role_bindings'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def trusted_access_roles(self): + """Instance depends on the API version: + + * 2022-04-02-preview: :class:`TrustedAccessRolesOperations` + """ + api_version = self._get_api_version('trusted_access_roles') + if api_version == '2022-04-02-preview': + from .v2022_04_02_preview.operations import TrustedAccessRolesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'trusted_access_roles'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + def close(self): self._client.close() def __enter__(self): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py index 5d741ed4ab2..857f6c2e146 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "18.0.0b" +VERSION = "19.0.0b" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py index f362ada1bcb..f44881934b2 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py @@ -5,4 +5,4 @@ # license information. # -------------------------------------------------------------------------- from .v2017_07_01.models import * -from .v2022_03_02_preview.models import * +from .v2022_04_02_preview.models import * diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/__init__.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_configuration.py similarity index 88% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_configuration.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_configuration.py index c2d539cd3b7..872b574a304 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_configuration.py @@ -18,7 +18,7 @@ VERSION = "unknown" -class ContainerServiceClientConfiguration(Configuration): +class ContainerServiceClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes """Configuration for ContainerServiceClient. Note that all parameters used to create this instance are saved as instance @@ -28,6 +28,9 @@ class ContainerServiceClientConfiguration(Configuration): :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. :type subscription_id: str + :keyword api_version: Api Version. Default value is "2022-04-02-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str """ def __init__( @@ -37,6 +40,8 @@ def __init__( **kwargs: Any ) -> None: super(ContainerServiceClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + if credential is None: raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: @@ -44,7 +49,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2022-03-02-preview" + self.api_version = api_version self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-containerservice/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_container_service_client.py similarity index 76% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_container_service_client.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_container_service_client.py index fcb0819b78c..e4ae8f978ea 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_container_service_client.py @@ -7,55 +7,65 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Optional, TYPE_CHECKING +from typing import Any, TYPE_CHECKING + +from msrest import Deserializer, Serializer from azure.core.rest import HttpRequest, HttpResponse from azure.mgmt.core import ARMPipelineClient -from msrest import Deserializer, Serializer from . import models from ._configuration import ContainerServiceClientConfiguration -from .operations import AgentPoolsOperations, MaintenanceConfigurationsOperations, ManagedClusterSnapshotsOperations, ManagedClustersOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations, ResolvePrivateLinkServiceIdOperations, SnapshotsOperations +from .operations import AgentPoolsOperations, MaintenanceConfigurationsOperations, ManagedClusterSnapshotsOperations, ManagedClustersOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations, ResolvePrivateLinkServiceIdOperations, SnapshotsOperations, TrustedAccessRoleBindingsOperations, TrustedAccessRolesOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials import TokenCredential -class ContainerServiceClient: +class ContainerServiceClient: # pylint: disable=too-many-instance-attributes """The Container Service Client. :ivar operations: Operations operations - :vartype operations: azure.mgmt.containerservice.v2022_03_02_preview.operations.Operations + :vartype operations: azure.mgmt.containerservice.v2022_04_02_preview.operations.Operations :ivar managed_clusters: ManagedClustersOperations operations :vartype managed_clusters: - azure.mgmt.containerservice.v2022_03_02_preview.operations.ManagedClustersOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.ManagedClustersOperations :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations :vartype maintenance_configurations: - azure.mgmt.containerservice.v2022_03_02_preview.operations.MaintenanceConfigurationsOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.MaintenanceConfigurationsOperations :ivar agent_pools: AgentPoolsOperations operations :vartype agent_pools: - azure.mgmt.containerservice.v2022_03_02_preview.operations.AgentPoolsOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.AgentPoolsOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations :vartype private_endpoint_connections: - azure.mgmt.containerservice.v2022_03_02_preview.operations.PrivateEndpointConnectionsOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.PrivateEndpointConnectionsOperations :ivar private_link_resources: PrivateLinkResourcesOperations operations :vartype private_link_resources: - azure.mgmt.containerservice.v2022_03_02_preview.operations.PrivateLinkResourcesOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.PrivateLinkResourcesOperations :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations :vartype resolve_private_link_service_id: - azure.mgmt.containerservice.v2022_03_02_preview.operations.ResolvePrivateLinkServiceIdOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.ResolvePrivateLinkServiceIdOperations :ivar snapshots: SnapshotsOperations operations :vartype snapshots: - azure.mgmt.containerservice.v2022_03_02_preview.operations.SnapshotsOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.SnapshotsOperations :ivar managed_cluster_snapshots: ManagedClusterSnapshotsOperations operations :vartype managed_cluster_snapshots: - azure.mgmt.containerservice.v2022_03_02_preview.operations.ManagedClusterSnapshotsOperations + azure.mgmt.containerservice.v2022_04_02_preview.operations.ManagedClusterSnapshotsOperations + :ivar trusted_access_roles: TrustedAccessRolesOperations operations + :vartype trusted_access_roles: + azure.mgmt.containerservice.v2022_04_02_preview.operations.TrustedAccessRolesOperations + :ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations + :vartype trusted_access_role_bindings: + azure.mgmt.containerservice.v2022_04_02_preview.operations.TrustedAccessRoleBindingsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. :type subscription_id: str - :param base_url: Service URL. Default value is 'https://management.azure.com'. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str + :keyword api_version: Api Version. Default value is "2022-04-02-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ @@ -83,11 +93,13 @@ def __init__( self.resolve_private_link_service_id = ResolvePrivateLinkServiceIdOperations(self._client, self._config, self._serialize, self._deserialize) self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) self.managed_cluster_snapshots = ManagedClusterSnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_roles = TrustedAccessRolesOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_role_bindings = TrustedAccessRoleBindingsOperations(self._client, self._config, self._serialize, self._deserialize) def _send_request( self, - request, # type: HttpRequest + request: HttpRequest, **kwargs: Any ) -> HttpResponse: """Runs the network request through the client's chained policies. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_patch.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_patch.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_patch.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_vendor.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_vendor.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/_vendor.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/_vendor.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/__init__.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_configuration.py similarity index 88% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_configuration.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_configuration.py index c4cafb33cb2..9dfb69e9d0c 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_configuration.py @@ -18,7 +18,7 @@ VERSION = "unknown" -class ContainerServiceClientConfiguration(Configuration): +class ContainerServiceClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes """Configuration for ContainerServiceClient. Note that all parameters used to create this instance are saved as instance @@ -28,6 +28,9 @@ class ContainerServiceClientConfiguration(Configuration): :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. :type subscription_id: str + :keyword api_version: Api Version. Default value is "2022-04-02-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str """ def __init__( @@ -37,6 +40,8 @@ def __init__( **kwargs: Any ) -> None: super(ContainerServiceClientConfiguration, self).__init__(**kwargs) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + if credential is None: raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: @@ -44,7 +49,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2022-03-02-preview" + self.api_version = api_version self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-containerservice/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_container_service_client.py similarity index 77% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_container_service_client.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_container_service_client.py index bdfb8c4adfa..f9cc430a0ab 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_container_service_client.py @@ -7,55 +7,65 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Awaitable, Optional, TYPE_CHECKING +from typing import Any, Awaitable, TYPE_CHECKING + +from msrest import Deserializer, Serializer from azure.core.rest import AsyncHttpResponse, HttpRequest from azure.mgmt.core import AsyncARMPipelineClient -from msrest import Deserializer, Serializer from .. import models from ._configuration import ContainerServiceClientConfiguration -from .operations import AgentPoolsOperations, MaintenanceConfigurationsOperations, ManagedClusterSnapshotsOperations, ManagedClustersOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations, ResolvePrivateLinkServiceIdOperations, SnapshotsOperations +from .operations import AgentPoolsOperations, MaintenanceConfigurationsOperations, ManagedClusterSnapshotsOperations, ManagedClustersOperations, Operations, PrivateEndpointConnectionsOperations, PrivateLinkResourcesOperations, ResolvePrivateLinkServiceIdOperations, SnapshotsOperations, TrustedAccessRoleBindingsOperations, TrustedAccessRolesOperations if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials_async import AsyncTokenCredential -class ContainerServiceClient: +class ContainerServiceClient: # pylint: disable=too-many-instance-attributes """The Container Service Client. :ivar operations: Operations operations - :vartype operations: azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.Operations + :vartype operations: azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.Operations :ivar managed_clusters: ManagedClustersOperations operations :vartype managed_clusters: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.ManagedClustersOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.ManagedClustersOperations :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations :vartype maintenance_configurations: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.MaintenanceConfigurationsOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.MaintenanceConfigurationsOperations :ivar agent_pools: AgentPoolsOperations operations :vartype agent_pools: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.AgentPoolsOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.AgentPoolsOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations :vartype private_endpoint_connections: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.PrivateEndpointConnectionsOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.PrivateEndpointConnectionsOperations :ivar private_link_resources: PrivateLinkResourcesOperations operations :vartype private_link_resources: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.PrivateLinkResourcesOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.PrivateLinkResourcesOperations :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations :vartype resolve_private_link_service_id: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.ResolvePrivateLinkServiceIdOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.ResolvePrivateLinkServiceIdOperations :ivar snapshots: SnapshotsOperations operations :vartype snapshots: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.SnapshotsOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.SnapshotsOperations :ivar managed_cluster_snapshots: ManagedClusterSnapshotsOperations operations :vartype managed_cluster_snapshots: - azure.mgmt.containerservice.v2022_03_02_preview.aio.operations.ManagedClusterSnapshotsOperations + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.ManagedClusterSnapshotsOperations + :ivar trusted_access_roles: TrustedAccessRolesOperations operations + :vartype trusted_access_roles: + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.TrustedAccessRolesOperations + :ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations + :vartype trusted_access_role_bindings: + azure.mgmt.containerservice.v2022_04_02_preview.aio.operations.TrustedAccessRoleBindingsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. :type subscription_id: str - :param base_url: Service URL. Default value is 'https://management.azure.com'. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str + :keyword api_version: Api Version. Default value is "2022-04-02-preview". Note that overriding + this default value may result in unsupported behavior. + :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ @@ -83,6 +93,8 @@ def __init__( self.resolve_private_link_service_id = ResolvePrivateLinkServiceIdOperations(self._client, self._config, self._serialize, self._deserialize) self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) self.managed_cluster_snapshots = ManagedClusterSnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_roles = TrustedAccessRolesOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_role_bindings = TrustedAccessRoleBindingsOperations(self._client, self._config, self._serialize, self._deserialize) def _send_request( diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_patch.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/_patch.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/_patch.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/__init__.py similarity index 85% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/__init__.py index 78e2791463e..4a901153368 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/__init__.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/__init__.py @@ -15,6 +15,8 @@ from ._resolve_private_link_service_id_operations import ResolvePrivateLinkServiceIdOperations from ._snapshots_operations import SnapshotsOperations from ._managed_cluster_snapshots_operations import ManagedClusterSnapshotsOperations +from ._trusted_access_roles_operations import TrustedAccessRolesOperations +from ._trusted_access_role_bindings_operations import TrustedAccessRoleBindingsOperations __all__ = [ 'Operations', @@ -26,4 +28,6 @@ 'ResolvePrivateLinkServiceIdOperations', 'SnapshotsOperations', 'ManagedClusterSnapshotsOperations', + 'TrustedAccessRolesOperations', + 'TrustedAccessRoleBindingsOperations', ] diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_agent_pools_operations.py similarity index 85% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_agent_pools_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_agent_pools_operations.py index e445793f13f..b2432a63922 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_agent_pools_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -33,7 +32,7 @@ class AgentPoolsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -66,9 +65,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either AgentPoolListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -81,6 +82,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -92,6 +94,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -109,7 +112,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -122,7 +129,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools"} # type: ignore @distributed_trace_async async def get( @@ -144,7 +151,7 @@ async def get( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPool, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] @@ -153,18 +160,25 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -178,7 +192,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore async def _create_or_update_initial( @@ -195,6 +209,7 @@ async def _create_or_update_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'AgentPool') @@ -204,6 +219,7 @@ async def _create_or_update_initial( resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_or_update_initial.metadata['url'], @@ -211,7 +227,11 @@ async def _create_or_update_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -229,7 +249,7 @@ async def _create_or_update_initial( return deserialized - _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace_async @@ -252,7 +272,7 @@ async def begin_create_or_update( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param parameters: The agent pool to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -264,11 +284,12 @@ async def begin_create_or_update( :return: An instance of AsyncLROPoller that returns either AgentPool or the result of cls(response) :rtype: - ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] lro_delay = kwargs.pop( 'polling_interval', @@ -281,6 +302,7 @@ async def begin_create_or_update( resource_name=resource_name, agent_pool_name=agent_pool_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -305,12 +327,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore - async def _delete_initial( + async def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -324,19 +345,26 @@ async def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, ignore_pod_disruption_budget=ignore_pod_disruption_budget, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -346,11 +374,11 @@ async def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace_async - async def begin_delete( + async def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -369,7 +397,7 @@ async def begin_delete( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on - a node without considering Pod Disruption Budget. + a node without considering Pod Disruption Budget. Default value is None. :type ignore_pod_disruption_budget: bool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -383,7 +411,8 @@ async def begin_delete( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -396,6 +425,7 @@ async def begin_delete( resource_name=resource_name, agent_pool_name=agent_pool_name, ignore_pod_disruption_budget=ignore_pod_disruption_budget, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -416,10 +446,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace_async async def get_upgrade_profile( @@ -441,7 +470,7 @@ async def get_upgrade_profile( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolUpgradeProfile"] @@ -450,18 +479,25 @@ async def get_upgrade_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_upgrade_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self.get_upgrade_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -475,7 +511,7 @@ async def get_upgrade_profile( return deserialized - get_upgrade_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default'} # type: ignore + get_upgrade_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default"} # type: ignore @distributed_trace_async @@ -497,7 +533,7 @@ async def get_available_agent_pool_versions( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolAvailableVersions, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolAvailableVersions + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolAvailableVersions :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolAvailableVersions"] @@ -506,17 +542,24 @@ async def get_available_agent_pool_versions( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_available_agent_pool_versions_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get_available_agent_pool_versions.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -530,7 +573,7 @@ async def get_available_agent_pool_versions( return deserialized - get_available_agent_pool_versions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions'} # type: ignore + get_available_agent_pool_versions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions"} # type: ignore async def _upgrade_node_image_version_initial( @@ -546,18 +589,25 @@ async def _upgrade_node_image_version_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_upgrade_node_image_version_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self._upgrade_node_image_version_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -576,7 +626,7 @@ async def _upgrade_node_image_version_initial( return deserialized - _upgrade_node_image_version_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore + _upgrade_node_image_version_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion"} # type: ignore @distributed_trace_async @@ -610,10 +660,11 @@ async def begin_upgrade_node_image_version( :return: An instance of AsyncLROPoller that returns either AgentPool or the result of cls(response) :rtype: - ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] lro_delay = kwargs.pop( 'polling_interval', @@ -625,6 +676,7 @@ async def begin_upgrade_node_image_version( resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -651,7 +703,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore + begin_upgrade_node_image_version.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_maintenance_configurations_operations.py similarity index 85% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_maintenance_configurations_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_maintenance_configurations_operations.py index 1bcd059b28e..4c2508631d5 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_maintenance_configurations_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -31,7 +30,7 @@ class MaintenanceConfigurationsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -65,9 +64,11 @@ def list_by_managed_cluster( :return: An iterator like instance of either MaintenanceConfigurationListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfigurationListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfigurationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfigurationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -80,6 +81,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list_by_managed_cluster.metadata['url'], ) request = _convert_request(request) @@ -91,6 +93,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -108,7 +111,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -121,7 +128,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_by_managed_cluster.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations'} # type: ignore + list_by_managed_cluster.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations"} # type: ignore @distributed_trace_async async def get( @@ -143,7 +150,7 @@ async def get( :type config_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -152,18 +159,25 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -177,7 +191,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore @distributed_trace_async @@ -201,10 +215,10 @@ async def create_or_update( :type config_name: str :param parameters: The maintenance configuration to create or update. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -213,6 +227,7 @@ async def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'MaintenanceConfiguration') @@ -222,6 +237,7 @@ async def create_or_update( resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -229,7 +245,11 @@ async def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -243,11 +263,11 @@ async def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore @distributed_trace_async - async def delete( + async def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -275,18 +295,25 @@ async def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -296,5 +323,5 @@ async def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_cluster_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_cluster_snapshots_operations.py similarity index 83% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_cluster_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_cluster_snapshots_operations.py index 926d9459cdf..586d7b85df0 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_cluster_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_cluster_snapshots_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -31,7 +30,7 @@ class ManagedClusterSnapshotsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -59,9 +58,11 @@ def list( :return: An iterator like instance of either ManagedClusterSnapshotListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshotListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -72,6 +73,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -81,6 +83,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -98,7 +101,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -111,7 +118,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots"} # type: ignore @distributed_trace def list_by_resource_group( @@ -129,9 +136,11 @@ def list_by_resource_group( :return: An iterator like instance of either ManagedClusterSnapshotListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshotListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -143,6 +152,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -153,6 +163,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -170,7 +181,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -183,7 +198,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots"} # type: ignore @distributed_trace_async async def get( @@ -202,7 +217,7 @@ async def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -211,17 +226,24 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -235,7 +257,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace_async @@ -256,10 +278,10 @@ async def create_or_update( :type resource_name: str :param parameters: The managed cluster snapshot to create or update. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -268,6 +290,7 @@ async def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterSnapshot') @@ -276,6 +299,7 @@ async def create_or_update( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -283,7 +307,11 @@ async def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -301,7 +329,7 @@ async def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace_async @@ -321,10 +349,10 @@ async def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update managed cluster snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -333,6 +361,7 @@ async def update_tags( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -341,6 +370,7 @@ async def update_tags( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update_tags.metadata['url'], @@ -348,7 +378,11 @@ async def update_tags( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -362,11 +396,11 @@ async def update_tags( return deserialized - update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace_async - async def delete( + async def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -391,17 +425,24 @@ async def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -411,5 +452,5 @@ async def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_clusters_operations.py similarity index 83% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_clusters_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_clusters_operations.py index 63df641c04d..d690ad6c5b8 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_managed_clusters_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -26,14 +25,14 @@ T = TypeVar('T') ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] -class ManagedClustersOperations: +class ManagedClustersOperations: # pylint: disable=too-many-public-methods """ManagedClustersOperations async operations. You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -61,11 +60,12 @@ async def get_os_options( :param location: The name of Azure region. :type location: str - :param resource_type: The resource type for which the OS options needs to be returned. + :param resource_type: The resource type for which the OS options needs to be returned. Default + value is None. :type resource_type: str :keyword callable cls: A custom type or function that will be passed the direct response :return: OSOptionProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSOptionProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSOptionProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OSOptionProfile"] @@ -74,17 +74,24 @@ async def get_os_options( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_os_options_request( subscription_id=self._config.subscription_id, location=location, + api_version=api_version, resource_type=resource_type, template_url=self.get_os_options.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -98,7 +105,7 @@ async def get_os_options( return deserialized - get_os_options.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default'} # type: ignore + get_os_options.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default"} # type: ignore @distributed_trace @@ -114,9 +121,11 @@ def list( :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -127,6 +136,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -136,6 +146,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -153,7 +164,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -166,7 +181,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters"} # type: ignore @distributed_trace def list_by_resource_group( @@ -184,9 +199,11 @@ def list_by_resource_group( :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -198,6 +215,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -208,6 +226,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -225,7 +244,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -238,7 +261,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters"} # type: ignore @distributed_trace_async async def get_upgrade_profile( @@ -257,7 +280,7 @@ async def get_upgrade_profile( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterUpgradeProfile"] @@ -266,17 +289,24 @@ async def get_upgrade_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_upgrade_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get_upgrade_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -290,7 +320,7 @@ async def get_upgrade_profile( return deserialized - get_upgrade_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default'} # type: ignore + get_upgrade_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default"} # type: ignore @distributed_trace_async @@ -316,7 +346,7 @@ async def get_access_profile( :type role_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterAccessProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAccessProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAccessProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterAccessProfile"] @@ -325,18 +355,25 @@ async def get_access_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_access_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, role_name=role_name, + api_version=api_version, template_url=self.get_access_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -350,7 +387,7 @@ async def get_access_profile( return deserialized - get_access_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential'} # type: ignore + get_access_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential"} # type: ignore @distributed_trace_async @@ -369,11 +406,11 @@ async def list_cluster_admin_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -382,18 +419,25 @@ async def list_cluster_admin_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_admin_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, template_url=self.list_cluster_admin_credentials.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -407,7 +451,7 @@ async def list_cluster_admin_credentials( return deserialized - list_cluster_admin_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential'} # type: ignore + list_cluster_admin_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential"} # type: ignore @distributed_trace_async @@ -427,15 +471,15 @@ async def list_cluster_user_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :param format: Only apply to AAD clusters, specifies the format of returned kubeconfig. Format 'azure' will return azure auth-provider kubeconfig; format 'exec' will return exec format - kubeconfig, which requires kubelogin binary in the path. - :type format: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Format + kubeconfig, which requires kubelogin binary in the path. Default value is None. + :type format: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Format :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -444,11 +488,14 @@ async def list_cluster_user_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_user_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, format=format, template_url=self.list_cluster_user_credentials.metadata['url'], @@ -456,7 +503,11 @@ async def list_cluster_user_credentials( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -470,7 +521,7 @@ async def list_cluster_user_credentials( return deserialized - list_cluster_user_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential'} # type: ignore + list_cluster_user_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential"} # type: ignore @distributed_trace_async @@ -489,11 +540,11 @@ async def list_cluster_monitoring_user_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -502,18 +553,25 @@ async def list_cluster_monitoring_user_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_monitoring_user_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, template_url=self.list_cluster_monitoring_user_credentials.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -527,7 +585,7 @@ async def list_cluster_monitoring_user_credentials( return deserialized - list_cluster_monitoring_user_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential'} # type: ignore + list_cluster_monitoring_user_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential"} # type: ignore @distributed_trace_async @@ -547,7 +605,7 @@ async def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedCluster, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] @@ -556,17 +614,24 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -580,7 +645,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore async def _create_or_update_initial( @@ -596,6 +661,7 @@ async def _create_or_update_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedCluster') @@ -604,6 +670,7 @@ async def _create_or_update_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_or_update_initial.metadata['url'], @@ -611,7 +678,11 @@ async def _create_or_update_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -629,7 +700,7 @@ async def _create_or_update_initial( return deserialized - _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace_async @@ -649,7 +720,7 @@ async def begin_create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The managed cluster to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -661,11 +732,12 @@ async def begin_create_or_update( :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of cls(response) :rtype: - ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] lro_delay = kwargs.pop( 'polling_interval', @@ -677,6 +749,7 @@ async def begin_create_or_update( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -701,10 +774,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore async def _update_tags_initial( self, @@ -719,6 +791,7 @@ async def _update_tags_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -727,6 +800,7 @@ async def _update_tags_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._update_tags_initial.metadata['url'], @@ -734,7 +808,11 @@ async def _update_tags_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -748,7 +826,7 @@ async def _update_tags_initial( return deserialized - _update_tags_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace_async @@ -768,7 +846,7 @@ async def begin_update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -780,11 +858,12 @@ async def begin_update_tags( :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of cls(response) :rtype: - ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] lro_delay = kwargs.pop( 'polling_interval', @@ -796,6 +875,7 @@ async def begin_update_tags( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -820,12 +900,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore - async def _delete_initial( + async def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -838,18 +917,25 @@ async def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, ignore_pod_disruption_budget=ignore_pod_disruption_budget, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -859,11 +945,11 @@ async def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace_async - async def begin_delete( + async def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -879,7 +965,7 @@ async def begin_delete( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on - a node without considering Pod Disruption Budget. + a node without considering Pod Disruption Budget. Default value is None. :type ignore_pod_disruption_budget: bool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -893,7 +979,8 @@ async def begin_delete( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -905,6 +992,7 @@ async def begin_delete( resource_group_name=resource_group_name, resource_name=resource_name, ignore_pod_disruption_budget=ignore_pod_disruption_budget, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -925,12 +1013,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore - async def _reset_service_principal_profile_initial( + async def _reset_service_principal_profile_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -943,6 +1030,7 @@ async def _reset_service_principal_profile_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterServicePrincipalProfile') @@ -951,6 +1039,7 @@ async def _reset_service_principal_profile_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._reset_service_principal_profile_initial.metadata['url'], @@ -958,7 +1047,11 @@ async def _reset_service_principal_profile_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -968,11 +1061,11 @@ async def _reset_service_principal_profile_initial( if cls: return cls(pipeline_response, None, {}) - _reset_service_principal_profile_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile'} # type: ignore + _reset_service_principal_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile"} # type: ignore @distributed_trace_async - async def begin_reset_service_principal_profile( + async def begin_reset_service_principal_profile( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -989,7 +1082,7 @@ async def begin_reset_service_principal_profile( :type resource_name: str :param parameters: The service principal profile to set on the managed cluster. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterServicePrincipalProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -1002,8 +1095,9 @@ async def begin_reset_service_principal_profile( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1015,6 +1109,7 @@ async def begin_reset_service_principal_profile( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1036,12 +1131,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_reset_service_principal_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile'} # type: ignore + begin_reset_service_principal_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile"} # type: ignore - async def _reset_aad_profile_initial( + async def _reset_aad_profile_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1054,6 +1148,7 @@ async def _reset_aad_profile_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterAADProfile') @@ -1062,6 +1157,7 @@ async def _reset_aad_profile_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._reset_aad_profile_initial.metadata['url'], @@ -1069,7 +1165,11 @@ async def _reset_aad_profile_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -1079,11 +1179,11 @@ async def _reset_aad_profile_initial( if cls: return cls(pipeline_response, None, {}) - _reset_aad_profile_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile'} # type: ignore + _reset_aad_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile"} # type: ignore @distributed_trace_async - async def begin_reset_aad_profile( + async def begin_reset_aad_profile( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1100,7 +1200,7 @@ async def begin_reset_aad_profile( :type resource_name: str :param parameters: The AAD profile to set on the Managed Cluster. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAADProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAADProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -1113,8 +1213,9 @@ async def begin_reset_aad_profile( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1126,6 +1227,7 @@ async def begin_reset_aad_profile( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1147,12 +1249,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_reset_aad_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile'} # type: ignore + begin_reset_aad_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile"} # type: ignore - async def _rotate_cluster_certificates_initial( + async def _rotate_cluster_certificates_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1164,17 +1265,24 @@ async def _rotate_cluster_certificates_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_rotate_cluster_certificates_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._rotate_cluster_certificates_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1184,11 +1292,11 @@ async def _rotate_cluster_certificates_initial( if cls: return cls(pipeline_response, None, {}) - _rotate_cluster_certificates_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates'} # type: ignore + _rotate_cluster_certificates_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates"} # type: ignore @distributed_trace_async - async def begin_rotate_cluster_certificates( + async def begin_rotate_cluster_certificates( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1215,7 +1323,8 @@ async def begin_rotate_cluster_certificates( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1226,6 +1335,7 @@ async def begin_rotate_cluster_certificates( raw_result = await self._rotate_cluster_certificates_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -1246,12 +1356,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_rotate_cluster_certificates.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates'} # type: ignore + begin_rotate_cluster_certificates.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates"} # type: ignore - async def _rotate_service_account_signing_keys_initial( + async def _rotate_service_account_signing_keys_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1263,17 +1372,24 @@ async def _rotate_service_account_signing_keys_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_rotate_service_account_signing_keys_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._rotate_service_account_signing_keys_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1283,11 +1399,11 @@ async def _rotate_service_account_signing_keys_initial( if cls: return cls(pipeline_response, None, {}) - _rotate_service_account_signing_keys_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys'} # type: ignore + _rotate_service_account_signing_keys_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys"} # type: ignore @distributed_trace_async - async def begin_rotate_service_account_signing_keys( + async def begin_rotate_service_account_signing_keys( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1313,7 +1429,8 @@ async def begin_rotate_service_account_signing_keys( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1324,6 +1441,7 @@ async def begin_rotate_service_account_signing_keys( raw_result = await self._rotate_service_account_signing_keys_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -1344,12 +1462,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_rotate_service_account_signing_keys.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys'} # type: ignore + begin_rotate_service_account_signing_keys.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys"} # type: ignore - async def _stop_initial( + async def _stop_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1361,17 +1478,24 @@ async def _stop_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_stop_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._stop_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1381,11 +1505,11 @@ async def _stop_initial( if cls: return cls(pipeline_response, None, {}) - _stop_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop'} # type: ignore + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop"} # type: ignore @distributed_trace_async - async def begin_stop( + async def begin_stop( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1415,7 +1539,8 @@ async def begin_stop( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1426,6 +1551,7 @@ async def begin_stop( raw_result = await self._stop_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -1446,12 +1572,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_stop.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop'} # type: ignore + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop"} # type: ignore - async def _start_initial( + async def _start_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1463,17 +1588,24 @@ async def _start_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_start_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._start_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1483,11 +1615,11 @@ async def _start_initial( if cls: return cls(pipeline_response, None, {}) - _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start'} # type: ignore + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start"} # type: ignore @distributed_trace_async - async def begin_start( + async def begin_start( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1514,7 +1646,8 @@ async def begin_start( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1525,6 +1658,7 @@ async def begin_start( raw_result = await self._start_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -1545,10 +1679,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start'} # type: ignore + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start"} # type: ignore async def _run_command_initial( self, @@ -1563,6 +1696,7 @@ async def _run_command_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(request_payload, 'RunCommandRequest') @@ -1571,6 +1705,7 @@ async def _run_command_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._run_command_initial.metadata['url'], @@ -1578,7 +1713,11 @@ async def _run_command_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -1594,7 +1733,7 @@ async def _run_command_initial( return deserialized - _run_command_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand'} # type: ignore + _run_command_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand"} # type: ignore @distributed_trace_async @@ -1617,7 +1756,7 @@ async def begin_run_command( :type resource_name: str :param request_payload: The run command request. :type request_payload: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandRequest + ~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandRequest :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for @@ -1629,11 +1768,12 @@ async def begin_run_command( :return: An instance of AsyncLROPoller that returns either RunCommandResult or the result of cls(response) :rtype: - ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandResult] + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.RunCommandResult"] lro_delay = kwargs.pop( 'polling_interval', @@ -1645,6 +1785,7 @@ async def begin_run_command( resource_group_name=resource_group_name, resource_name=resource_name, request_payload=request_payload, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1669,10 +1810,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_run_command.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand'} # type: ignore + begin_run_command.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand"} # type: ignore @distributed_trace_async async def get_command_result( @@ -1694,7 +1834,7 @@ async def get_command_result( :type command_id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: RunCommandResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandResult or None + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandResult or None :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.RunCommandResult"]] @@ -1703,18 +1843,25 @@ async def get_command_result( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_command_result_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, command_id=command_id, + api_version=api_version, template_url=self.get_command_result.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -1730,7 +1877,7 @@ async def get_command_result( return deserialized - get_command_result.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}'} # type: ignore + get_command_result.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}"} # type: ignore @distributed_trace @@ -1754,9 +1901,11 @@ def list_outbound_network_dependencies_endpoints( :return: An iterator like instance of either OutboundEnvironmentEndpointCollection or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundEnvironmentEndpointCollection] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundEnvironmentEndpointCollection] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundEnvironmentEndpointCollection"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -1769,6 +1918,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list_outbound_network_dependencies_endpoints.metadata['url'], ) request = _convert_request(request) @@ -1780,6 +1930,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -1797,7 +1948,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1810,4 +1965,4 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_outbound_network_dependencies_endpoints.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints'} # type: ignore + list_outbound_network_dependencies_endpoints.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_operations.py similarity index 87% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_operations.py index efbdbc7588f..7abbc49995d 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -15,7 +14,6 @@ from azure.core.pipeline.transport import AsyncHttpResponse from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace -from azure.core.tracing.decorator_async import distributed_trace_async from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models @@ -31,7 +29,7 @@ class Operations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -58,9 +56,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.OperationListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -70,6 +70,7 @@ def prepare_request(next_link=None): if not next_link: request = build_list_request( + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -78,6 +79,7 @@ def prepare_request(next_link=None): else: request = build_list_request( + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -95,7 +97,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -108,4 +114,4 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/providers/Microsoft.ContainerService/operations'} # type: ignore + list.metadata = {'url': "/providers/Microsoft.ContainerService/operations"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_endpoint_connections_operations.py similarity index 84% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_endpoint_connections_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_endpoint_connections_operations.py index a5fd191e120..8b3d6aa5a62 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_endpoint_connections_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar, Union from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -31,7 +30,7 @@ class PrivateEndpointConnectionsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -65,7 +64,7 @@ async def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnectionListResult, or the result of cls(response) :rtype: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnectionListResult + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnectionListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] @@ -74,17 +73,24 @@ async def list( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -98,7 +104,7 @@ async def list( return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections"} # type: ignore @distributed_trace_async @@ -122,7 +128,7 @@ async def get( :type private_endpoint_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -131,18 +137,25 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -156,7 +169,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore @distributed_trace_async @@ -180,10 +193,10 @@ async def update( :type private_endpoint_connection_name: str :param parameters: The updated private endpoint connection. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -192,6 +205,7 @@ async def update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'PrivateEndpointConnection') @@ -201,6 +215,7 @@ async def update( resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update.metadata['url'], @@ -208,7 +223,11 @@ async def update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -222,10 +241,10 @@ async def update( return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore - async def _delete_initial( + async def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -238,18 +257,25 @@ async def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -259,11 +285,11 @@ async def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore @distributed_trace_async - async def begin_delete( + async def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -292,7 +318,8 @@ async def begin_delete( :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.AsyncPollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -304,6 +331,7 @@ async def begin_delete( resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -324,7 +352,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_link_resources_operations.py similarity index 86% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_link_resources_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_link_resources_operations.py index c44a1fed9e8..766ee97a1be 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_private_link_resources_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -29,7 +28,7 @@ class PrivateLinkResourcesOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -62,7 +61,7 @@ async def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResourcesListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResourcesListResult + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResourcesListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResourcesListResult"] @@ -71,17 +70,24 @@ async def list( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -95,5 +101,5 @@ async def list( return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_resolve_private_link_service_id_operations.py similarity index 86% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_resolve_private_link_service_id_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_resolve_private_link_service_id_operations.py index 7af421170c6..0937b600ffd 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_resolve_private_link_service_id_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -29,7 +28,7 @@ class ResolvePrivateLinkServiceIdOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -61,10 +60,10 @@ async def post( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters required in order to resolve a private link service ID. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResource, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResource"] @@ -73,6 +72,7 @@ async def post( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'PrivateLinkResource') @@ -81,6 +81,7 @@ async def post( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.post.metadata['url'], @@ -88,7 +89,11 @@ async def post( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -102,5 +107,5 @@ async def post( return deserialized - post.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId'} # type: ignore + post.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_snapshots_operations.py similarity index 83% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_snapshots_operations.py index ca57e9fb096..5c24b4f40a2 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/aio/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_snapshots_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,7 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error @@ -31,7 +30,7 @@ class SnapshotsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -58,9 +57,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -71,6 +72,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -80,6 +82,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -97,7 +100,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -110,7 +117,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots"} # type: ignore @distributed_trace def list_by_resource_group( @@ -127,9 +134,11 @@ def list_by_resource_group( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) :rtype: - ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotListResult] + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -141,6 +150,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -151,6 +161,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -168,7 +179,11 @@ async def extract_data(pipeline_response): async def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -181,7 +196,7 @@ async def get_next(next_link=None): return AsyncItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots"} # type: ignore @distributed_trace_async async def get( @@ -200,7 +215,7 @@ async def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -209,17 +224,24 @@ async def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -233,7 +255,7 @@ async def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace_async @@ -253,10 +275,10 @@ async def create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The snapshot to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -265,6 +287,7 @@ async def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'Snapshot') @@ -273,6 +296,7 @@ async def create_or_update( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -280,7 +304,11 @@ async def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -298,7 +326,7 @@ async def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace_async @@ -318,10 +346,10 @@ async def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -330,6 +358,7 @@ async def update_tags( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -338,6 +367,7 @@ async def update_tags( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update_tags.metadata['url'], @@ -345,7 +375,11 @@ async def update_tags( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -359,11 +393,11 @@ async def update_tags( return deserialized - update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace_async - async def delete( + async def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -388,17 +422,24 @@ async def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -408,5 +449,5 @@ async def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_role_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_role_bindings_operations.py new file mode 100644 index 00000000000..8996bd6b92a --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_role_bindings_operations.py @@ -0,0 +1,327 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._trusted_access_role_bindings_operations import build_create_or_update_request, build_delete_request, build_get_request, build_list_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class TrustedAccessRoleBindingsOperations: + """TrustedAccessRoleBindingsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + resource_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.TrustedAccessRoleBindingListResult"]: + """List trusted access role bindings. + + List trusted access role bindings. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either TrustedAccessRoleBindingListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBindingListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBindingListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBindingListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any + ) -> "_models.TrustedAccessRoleBinding": + """Get a trusted access role binding. + + Get a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: TrustedAccessRoleBinding, or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBinding"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('TrustedAccessRoleBinding', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: "_models.TrustedAccessRoleBinding", + **kwargs: Any + ) -> "_models.TrustedAccessRoleBinding": + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. + :type trusted_access_role_binding: + ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :keyword callable cls: A custom type or function that will be passed the direct response + :return: TrustedAccessRoleBinding, or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBinding"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(trusted_access_role_binding, 'TrustedAccessRoleBinding') + + request = build_create_or_update_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('TrustedAccessRoleBinding', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + + + @distributed_trace_async + async def delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any + ) -> None: + """Delete a trusted access role binding. + + Delete a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + + request = build_delete_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + template_url=self.delete.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_roles_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_roles_operations.py new file mode 100644 index 00000000000..44cd3771272 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/aio/operations/_trusted_access_roles_operations.py @@ -0,0 +1,125 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._trusted_access_roles_operations import build_list_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class TrustedAccessRolesOperations: + """TrustedAccessRolesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.TrustedAccessRoleListResult"]: + """List supported trusted access roles. + + List supported trusted access roles. + + :param location: The name of Azure region. + :type location: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either TrustedAccessRoleListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + location=location, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + location=location, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/trustedAccessRoles"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/__init__.py similarity index 95% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/__init__.py index fc2d5e3f64f..ec5532f3845 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/__init__.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/__init__.py @@ -104,6 +104,11 @@ from ._models_py3 import TimeInWeek from ._models_py3 import TimeSpan from ._models_py3 import TrackedResource +from ._models_py3 import TrustedAccessRole +from ._models_py3 import TrustedAccessRoleBinding +from ._models_py3 import TrustedAccessRoleBindingListResult +from ._models_py3 import TrustedAccessRoleListResult +from ._models_py3 import TrustedAccessRoleRule from ._models_py3 import UserAssignedIdentity from ._models_py3 import WindowsGmsaProfile @@ -130,6 +135,7 @@ ManagedClusterSKUTier, NetworkMode, NetworkPlugin, + NetworkPluginMode, NetworkPolicy, OSDiskType, OSSKU, @@ -142,6 +148,7 @@ ScaleSetEvictionPolicy, ScaleSetPriority, SnapshotType, + TrustedAccessRoleBindingProvisioningState, UpgradeChannel, WeekDay, WorkloadRuntime, @@ -246,6 +253,11 @@ 'TimeInWeek', 'TimeSpan', 'TrackedResource', + 'TrustedAccessRole', + 'TrustedAccessRoleBinding', + 'TrustedAccessRoleBindingListResult', + 'TrustedAccessRoleListResult', + 'TrustedAccessRoleRule', 'UserAssignedIdentity', 'WindowsGmsaProfile', 'AgentPoolMode', @@ -269,6 +281,7 @@ 'ManagedClusterSKUTier', 'NetworkMode', 'NetworkPlugin', + 'NetworkPluginMode', 'NetworkPolicy', 'OSDiskType', 'OSSKU', @@ -281,6 +294,7 @@ 'ScaleSetEvictionPolicy', 'ScaleSetPriority', 'SnapshotType', + 'TrustedAccessRoleBindingProvisioningState', 'UpgradeChannel', 'WeekDay', 'WorkloadRuntime', diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_container_service_client_enums.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_container_service_client_enums.py similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_container_service_client_enums.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_container_service_client_enums.py index 375009a44e5..dbd286e52ca 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_container_service_client_enums.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_container_service_client_enums.py @@ -396,6 +396,14 @@ class NetworkPlugin(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): #: networking functionality. NONE = "none" +class NetworkPluginMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The mode the network plugin should use. + """ + + #: Pods are given IPs from the PodCIDR address space but use Azure Routing Domains rather than + #: Kubenet reference plugins host-local and bridge. + OVERLAY = "Overlay" + class NetworkPolicy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Network policy used for building the Kubernetes network. """ @@ -426,11 +434,15 @@ class OSDiskType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): EPHEMERAL = "Ephemeral" class OSSKU(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """Specifies an OS SKU. This value must not be specified if OSType is Windows. + """Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if + OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to + Windows2022 after Windows2019 is deprecated. """ UBUNTU = "Ubuntu" CBL_MARINER = "CBLMariner" + WINDOWS2019 = "Windows2019" + WINDOWS2022 = "Windows2022" class OSType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The operating system type. The default is Linux. @@ -536,6 +548,15 @@ class SnapshotType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): #: The snapshot is a snapshot of a managed cluster. MANAGED_CLUSTER = "ManagedCluster" +class TrustedAccessRoleBindingProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current provisioning state of trusted access role binding. + """ + + SUCCEEDED = "Succeeded" + FAILED = "Failed" + UPDATING = "Updating" + DELETING = "Deleting" + class UpgradeChannel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """For more information see `setting the AKS cluster auto-upgrade channel `_. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_models_py3.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_models_py3.py similarity index 89% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_models_py3.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_models_py3.py index 0291cc7ea43..627d45d3047 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/models/_models_py3.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/models/_models_py3.py @@ -82,15 +82,15 @@ class AgentPool(SubResource): `_. Possible values include: "Managed", "Ephemeral". :vartype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :vartype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :ivar workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :vartype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :ivar message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -109,10 +109,12 @@ class AgentPool(SubResource): :vartype max_pods: int :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :ivar max_count: The maximum number of nodes for auto-scaling. :vartype max_count: int :ivar min_count: The minimum number of nodes for auto-scaling. @@ -122,16 +124,16 @@ class AgentPool(SubResource): :ivar scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :vartype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :ivar type_properties_type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". :vartype type_properties_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :ivar mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :vartype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :vartype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :ivar orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -150,14 +152,14 @@ class AgentPool(SubResource): :vartype node_image_version: str :ivar upgrade_settings: Settings for upgrading the agentpool. :vartype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :ivar power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :vartype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :ivar availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :vartype availability_zones: list[str] @@ -168,18 +170,22 @@ class AgentPool(SubResource): `_. The default is false. :vartype enable_node_public_ip: bool + :ivar enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :vartype enable_custom_ca_trust: bool :ivar node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :vartype node_public_ip_prefix_id: str :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :vartype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :ivar scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :vartype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :ivar spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -195,9 +201,9 @@ class AgentPool(SubResource): :ivar proximity_placement_group_id: The ID for Proximity Placement Group. :vartype proximity_placement_group_id: str :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. - :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :ivar linux_os_config: The OS configuration of Linux agent nodes. - :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :ivar enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -211,10 +217,10 @@ class AgentPool(SubResource): :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :vartype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :vartype capacity_reservation_group_id: str @@ -264,6 +270,7 @@ class AgentPool(SubResource): 'power_state': {'key': 'properties.powerState', 'type': 'PowerState'}, 'availability_zones': {'key': 'properties.availabilityZones', 'type': '[str]'}, 'enable_node_public_ip': {'key': 'properties.enableNodePublicIP', 'type': 'bool'}, + 'enable_custom_ca_trust': {'key': 'properties.enableCustomCATrust', 'type': 'bool'}, 'node_public_ip_prefix_id': {'key': 'properties.nodePublicIPPrefixID', 'type': 'str'}, 'scale_set_priority': {'key': 'properties.scaleSetPriority', 'type': 'str'}, 'scale_set_eviction_policy': {'key': 'properties.scaleSetEvictionPolicy', 'type': 'str'}, @@ -310,6 +317,7 @@ def __init__( power_state: Optional["PowerState"] = None, availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, + enable_custom_ca_trust: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Optional[Union[str, "ScaleSetPriority"]] = "Regular", scale_set_eviction_policy: Optional[Union[str, "ScaleSetEvictionPolicy"]] = "Delete", @@ -348,15 +356,15 @@ def __init__( `_. Possible values include: "Managed", "Ephemeral". :paramtype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :paramtype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :keyword workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :paramtype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :keyword message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -375,10 +383,12 @@ def __init__( :paramtype max_pods: int :keyword os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :keyword os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :keyword max_count: The maximum number of nodes for auto-scaling. :paramtype max_count: int :keyword min_count: The minimum number of nodes for auto-scaling. @@ -388,16 +398,16 @@ def __init__( :keyword scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :paramtype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :keyword type_properties_type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". :paramtype type_properties_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :keyword mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :paramtype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :paramtype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :keyword orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -414,12 +424,12 @@ def __init__( :paramtype current_orchestrator_version: str :keyword upgrade_settings: Settings for upgrading the agentpool. :paramtype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :keyword power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :paramtype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :paramtype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :keyword availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :paramtype availability_zones: list[str] @@ -430,18 +440,22 @@ def __init__( `_. The default is false. :paramtype enable_node_public_ip: bool + :keyword enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :paramtype enable_custom_ca_trust: bool :keyword node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :paramtype node_public_ip_prefix_id: str :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :paramtype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :keyword scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :paramtype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :keyword spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -458,10 +472,10 @@ def __init__( :paramtype proximity_placement_group_id: str :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. :paramtype kubelet_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :keyword linux_os_config: The OS configuration of Linux agent nodes. :paramtype linux_os_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :keyword enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -476,10 +490,10 @@ def __init__( profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :paramtype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :paramtype capacity_reservation_group_id: str @@ -516,6 +530,7 @@ def __init__( self.power_state = power_state self.availability_zones = availability_zones self.enable_node_public_ip = enable_node_public_ip + self.enable_custom_ca_trust = enable_custom_ca_trust self.node_public_ip_prefix_id = node_public_ip_prefix_id self.scale_set_priority = scale_set_priority self.scale_set_eviction_policy = scale_set_eviction_policy @@ -548,7 +563,7 @@ class AgentPoolAvailableVersions(msrest.serialization.Model): :vartype type: str :ivar agent_pool_versions: List of versions available for agent pool. :vartype agent_pool_versions: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] """ _validation = { @@ -573,7 +588,7 @@ def __init__( """ :keyword agent_pool_versions: List of versions available for agent pool. :paramtype agent_pool_versions: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] """ super(AgentPoolAvailableVersions, self).__init__(**kwargs) self.id = None @@ -627,7 +642,7 @@ class AgentPoolListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of agent pools. - :vartype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + :vartype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] :ivar next_link: The URL to get the next set of agent pool results. :vartype next_link: str """ @@ -649,7 +664,7 @@ def __init__( ): """ :keyword value: The list of agent pools. - :paramtype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + :paramtype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] """ super(AgentPoolListResult, self).__init__(**kwargs) self.value = value @@ -673,10 +688,10 @@ class AgentPoolUpgradeProfile(msrest.serialization.Model): :vartype kubernetes_version: str :ivar os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType :ivar upgrades: List of orchestrator types and versions available for upgrade. :vartype upgrades: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] :ivar latest_node_image_version: The latest AKS supported node image version. :vartype latest_node_image_version: str """ @@ -713,10 +728,10 @@ def __init__( :paramtype kubernetes_version: str :keyword os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType + :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType :keyword upgrades: List of orchestrator types and versions available for upgrade. :paramtype upgrades: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] :keyword latest_node_image_version: The latest AKS supported node image version. :paramtype latest_node_image_version: str """ @@ -849,7 +864,7 @@ class CloudErrorBody(msrest.serialization.Model): error. :vartype target: str :ivar details: A list of additional details about the error. - :vartype details: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.CloudErrorBody] + :vartype details: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.CloudErrorBody] """ _attribute_map = { @@ -880,7 +895,7 @@ def __init__( :paramtype target: str :keyword details: A list of additional details about the error. :paramtype details: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.CloudErrorBody] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.CloudErrorBody] """ super(CloudErrorBody, self).__init__(**kwargs) self.code = code @@ -896,7 +911,7 @@ class ContainerServiceDiagnosticsProfile(msrest.serialization.Model): :ivar vm_diagnostics: Required. Profile for diagnostics on the container service VMs. :vartype vm_diagnostics: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceVMDiagnostics + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceVMDiagnostics """ _validation = { @@ -916,7 +931,7 @@ def __init__( """ :keyword vm_diagnostics: Required. Profile for diagnostics on the container service VMs. :paramtype vm_diagnostics: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceVMDiagnostics + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceVMDiagnostics """ super(ContainerServiceDiagnosticsProfile, self).__init__(**kwargs) self.vm_diagnostics = vm_diagnostics @@ -931,7 +946,7 @@ class ContainerServiceLinuxProfile(msrest.serialization.Model): :vartype admin_username: str :ivar ssh: Required. The SSH configuration for Linux-based VMs running on Azure. :vartype ssh: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceSshConfiguration + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceSshConfiguration """ _validation = { @@ -956,7 +971,7 @@ def __init__( :paramtype admin_username: str :keyword ssh: Required. The SSH configuration for Linux-based VMs running on Azure. :paramtype ssh: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceSshConfiguration + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceSshConfiguration """ super(ContainerServiceLinuxProfile, self).__init__(**kwargs) self.admin_username = admin_username @@ -972,7 +987,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): :ivar count: Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1. Possible values include: 1, 3, 5. Default value: "1". - :vartype count: int or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Count + :vartype count: int or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Count :ivar dns_prefix: Required. DNS prefix to be used to create the FQDN for the master pool. :vartype dns_prefix: str :ivar vm_size: Required. Size of agent VMs. Possible values include: "Standard_A1", @@ -1014,7 +1029,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): "Standard_NC6", "Standard_NC6s_v2", "Standard_NC6s_v3", "Standard_ND12s", "Standard_ND24rs", "Standard_ND24s", "Standard_ND6s", "Standard_NV12", "Standard_NV24", "Standard_NV6". :vartype vm_size: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceVMSizeTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceVMSizeTypes :ivar os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified. @@ -1028,7 +1043,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): StorageAccount and ManagedDisks. Leave it empty, we will choose for you based on the orchestrator choice. Possible values include: "StorageAccount", "ManagedDisks". :vartype storage_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceStorageProfileTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceStorageProfileTypes :ivar fqdn: FQDN for the master pool. :vartype fqdn: str """ @@ -1066,7 +1081,7 @@ def __init__( """ :keyword count: Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1. Possible values include: 1, 3, 5. Default value: "1". - :paramtype count: int or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Count + :paramtype count: int or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Count :keyword dns_prefix: Required. DNS prefix to be used to create the FQDN for the master pool. :paramtype dns_prefix: str :keyword vm_size: Required. Size of agent VMs. Possible values include: "Standard_A1", @@ -1108,7 +1123,7 @@ def __init__( "Standard_NC6", "Standard_NC6s_v2", "Standard_NC6s_v3", "Standard_ND12s", "Standard_ND24rs", "Standard_ND24s", "Standard_ND6s", "Standard_NV12", "Standard_NV24", "Standard_NV6". :paramtype vm_size: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceVMSizeTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceVMSizeTypes :keyword os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified. @@ -1122,7 +1137,7 @@ def __init__( StorageAccount and ManagedDisks. Leave it empty, we will choose for you based on the orchestrator choice. Possible values include: "StorageAccount", "ManagedDisks". :paramtype storage_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceStorageProfileTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceStorageProfileTypes """ super(ContainerServiceMasterProfile, self).__init__(**kwargs) self.count = count @@ -1141,15 +1156,19 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): :ivar network_plugin: Network plugin used for building the Kubernetes network. Possible values include: "azure", "kubenet", "none". Default value: "kubenet". :vartype network_plugin: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPlugin + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPlugin + :ivar network_plugin_mode: Network plugin mode used for building the Kubernetes network. + Possible values include: "Overlay". + :vartype network_plugin_mode: str or + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPluginMode :ivar network_policy: Network policy used for building the Kubernetes network. Possible values include: "calico", "azure". :vartype network_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPolicy :ivar network_mode: This cannot be specified if networkPlugin is anything other than 'azure'. Possible values include: "transparent", "bridge". :vartype network_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkMode :ivar pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. :vartype pod_cidr: str :ivar service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It must @@ -1167,18 +1186,18 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): "loadBalancer", "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway". Default value: "loadBalancer". :vartype outbound_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundType :ivar load_balancer_sku: The default is 'standard'. See `Azure Load Balancer SKUs `_ for more information about the differences between load balancer SKUs. Possible values include: "standard", "basic". :vartype load_balancer_sku: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LoadBalancerSku + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LoadBalancerSku :ivar load_balancer_profile: Profile of the cluster load balancer. :vartype load_balancer_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfile :ivar nat_gateway_profile: Profile of the cluster NAT gateway. :vartype nat_gateway_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterNATGatewayProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterNATGatewayProfile :ivar pod_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack networking. :vartype pod_cidrs: list[str] @@ -1190,7 +1209,7 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): single-stack, the expected value is IPv4. For dual-stack, the expected values are IPv4 and IPv6. :vartype ip_families: list[str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.IpFamily] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.IpFamily] """ _validation = { @@ -1202,6 +1221,7 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): _attribute_map = { 'network_plugin': {'key': 'networkPlugin', 'type': 'str'}, + 'network_plugin_mode': {'key': 'networkPluginMode', 'type': 'str'}, 'network_policy': {'key': 'networkPolicy', 'type': 'str'}, 'network_mode': {'key': 'networkMode', 'type': 'str'}, 'pod_cidr': {'key': 'podCidr', 'type': 'str'}, @@ -1221,6 +1241,7 @@ def __init__( self, *, network_plugin: Optional[Union[str, "NetworkPlugin"]] = "kubenet", + network_plugin_mode: Optional[Union[str, "NetworkPluginMode"]] = None, network_policy: Optional[Union[str, "NetworkPolicy"]] = None, network_mode: Optional[Union[str, "NetworkMode"]] = None, pod_cidr: Optional[str] = "10.244.0.0/16", @@ -1240,15 +1261,19 @@ def __init__( :keyword network_plugin: Network plugin used for building the Kubernetes network. Possible values include: "azure", "kubenet", "none". Default value: "kubenet". :paramtype network_plugin: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPlugin + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPlugin + :keyword network_plugin_mode: Network plugin mode used for building the Kubernetes network. + Possible values include: "Overlay". + :paramtype network_plugin_mode: str or + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPluginMode :keyword network_policy: Network policy used for building the Kubernetes network. Possible values include: "calico", "azure". :paramtype network_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPolicy :keyword network_mode: This cannot be specified if networkPlugin is anything other than 'azure'. Possible values include: "transparent", "bridge". :paramtype network_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkMode :keyword pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. :paramtype pod_cidr: str :keyword service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It @@ -1266,18 +1291,18 @@ def __init__( "loadBalancer", "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway". Default value: "loadBalancer". :paramtype outbound_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundType :keyword load_balancer_sku: The default is 'standard'. See `Azure Load Balancer SKUs `_ for more information about the differences between load balancer SKUs. Possible values include: "standard", "basic". :paramtype load_balancer_sku: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LoadBalancerSku + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LoadBalancerSku :keyword load_balancer_profile: Profile of the cluster load balancer. :paramtype load_balancer_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfile :keyword nat_gateway_profile: Profile of the cluster NAT gateway. :paramtype nat_gateway_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterNATGatewayProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterNATGatewayProfile :keyword pod_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack networking. :paramtype pod_cidrs: list[str] @@ -1289,10 +1314,11 @@ def __init__( For single-stack, the expected value is IPv4. For dual-stack, the expected values are IPv4 and IPv6. :paramtype ip_families: list[str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.IpFamily] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.IpFamily] """ super(ContainerServiceNetworkProfile, self).__init__(**kwargs) self.network_plugin = network_plugin + self.network_plugin_mode = network_plugin_mode self.network_policy = network_policy self.network_mode = network_mode self.pod_cidr = pod_cidr @@ -1316,7 +1342,7 @@ class ContainerServiceSshConfiguration(msrest.serialization.Model): :ivar public_keys: Required. The list of SSH public keys used to authenticate with Linux-based VMs. A maximum of 1 key may be specified. :vartype public_keys: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceSshPublicKey] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceSshPublicKey] """ _validation = { @@ -1337,7 +1363,7 @@ def __init__( :keyword public_keys: Required. The list of SSH public keys used to authenticate with Linux-based VMs. A maximum of 1 key may be specified. :paramtype public_keys: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceSshPublicKey] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceSshPublicKey] """ super(ContainerServiceSshConfiguration, self).__init__(**kwargs) self.public_keys = public_keys @@ -1480,7 +1506,7 @@ class CredentialResults(msrest.serialization.Model): :ivar kubeconfigs: Base64-encoded Kubernetes configuration file. :vartype kubeconfigs: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResult] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResult] """ _validation = { @@ -1508,7 +1534,7 @@ class EndpointDependency(msrest.serialization.Model): :vartype domain_name: str :ivar endpoint_details: The Ports and Protocols used when connecting to domainName. :vartype endpoint_details: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.EndpointDetail] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.EndpointDetail] """ _attribute_map = { @@ -1528,7 +1554,7 @@ def __init__( :paramtype domain_name: str :keyword endpoint_details: The Ports and Protocols used when connecting to domainName. :paramtype endpoint_details: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.EndpointDetail] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.EndpointDetail] """ super(EndpointDependency, self).__init__(**kwargs) self.domain_name = domain_name @@ -1588,7 +1614,7 @@ class ExtendedLocation(msrest.serialization.Model): :vartype name: str :ivar type: The type of the extended location. Possible values include: "EdgeZone". :vartype type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ExtendedLocationTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ExtendedLocationTypes """ _attribute_map = { @@ -1608,7 +1634,7 @@ def __init__( :paramtype name: str :keyword type: The type of the extended location. Possible values include: "EdgeZone". :paramtype type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ExtendedLocationTypes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ExtendedLocationTypes """ super(ExtendedLocation, self).__init__(**kwargs) self.name = name @@ -1742,7 +1768,7 @@ class LinuxOSConfig(msrest.serialization.Model): """See `AKS custom node configuration `_ for more details. :ivar sysctls: Sysctl settings for Linux agent nodes. - :vartype sysctls: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SysctlConfig + :vartype sysctls: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SysctlConfig :ivar transparent_huge_page_enabled: Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see `Transparent Hugepages `_. @@ -1774,7 +1800,7 @@ def __init__( ): """ :keyword sysctls: Sysctl settings for Linux agent nodes. - :paramtype sysctls: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SysctlConfig + :paramtype sysctls: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SysctlConfig :keyword transparent_huge_page_enabled: Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see `Transparent Hugepages `_. @@ -1807,13 +1833,13 @@ class MaintenanceConfiguration(SubResource): :ivar type: Resource type. :vartype type: str :ivar system_data: The system metadata relating to this resource. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar time_in_week: If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. - :vartype time_in_week: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.TimeInWeek] + :vartype time_in_week: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TimeInWeek] :ivar not_allowed_time: Time slots on which upgrade is not allowed. :vartype not_allowed_time: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.TimeSpan] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TimeSpan] """ _validation = { @@ -1843,10 +1869,10 @@ def __init__( :keyword time_in_week: If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. :paramtype time_in_week: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.TimeInWeek] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TimeInWeek] :keyword not_allowed_time: Time slots on which upgrade is not allowed. :paramtype not_allowed_time: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.TimeSpan] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TimeSpan] """ super(MaintenanceConfiguration, self).__init__(**kwargs) self.system_data = None @@ -1861,7 +1887,7 @@ class MaintenanceConfigurationListResult(msrest.serialization.Model): :ivar value: The list of maintenance configurations. :vartype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration] :ivar next_link: The URL to get the next set of maintenance configuration results. :vartype next_link: str """ @@ -1884,7 +1910,7 @@ def __init__( """ :keyword value: The list of maintenance configurations. :paramtype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration] """ super(MaintenanceConfigurationListResult, self).__init__(**kwargs) self.value = value @@ -1906,7 +1932,7 @@ class Resource(msrest.serialization.Model): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData """ _validation = { @@ -1953,7 +1979,7 @@ class TrackedResource(Resource): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar tags: A set of tags. Resource tags. :vartype tags: dict[str, str] :ivar location: Required. The geo-location where the resource lives. @@ -2012,26 +2038,26 @@ class ManagedCluster(TrackedResource): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar tags: A set of tags. Resource tags. :vartype tags: dict[str, str] :ivar location: Required. The geo-location where the resource lives. :vartype location: str :ivar sku: The managed cluster SKU. - :vartype sku: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKU + :vartype sku: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKU :ivar extended_location: The extended location of the Virtual Machine. :vartype extended_location: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ExtendedLocation + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ExtendedLocation :ivar identity: The identity of the managed cluster, if configured. :vartype identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIdentity :ivar provisioning_state: The current provisioning state. :vartype provisioning_state: str :ivar power_state: The Power State of the cluster. - :vartype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the cluster will be created/upgraded using a snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar max_agent_pools: The max number of agent pools for the managed cluster. :vartype max_agent_pools: int :ivar kubernetes_version: When you upgrade a supported AKS cluster, Kubernetes minor versions @@ -2056,28 +2082,28 @@ class ManagedCluster(TrackedResource): :vartype azure_portal_fqdn: str :ivar agent_pool_profiles: The agent pool properties. :vartype agent_pool_profiles: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAgentPoolProfile] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAgentPoolProfile] :ivar linux_profile: The profile for Linux VMs in the Managed Cluster. :vartype linux_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceLinuxProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceLinuxProfile :ivar windows_profile: The profile for Windows VMs in the Managed Cluster. :vartype windows_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterWindowsProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterWindowsProfile :ivar service_principal_profile: Information about a service principal identity for the cluster to use for manipulating Azure APIs. :vartype service_principal_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterServicePrincipalProfile :ivar addon_profiles: The profile of managed cluster add-on. :vartype addon_profiles: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAddonProfile] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAddonProfile] :ivar pod_identity_profile: See `use AAD pod identity `_ for more details on AAD pod identity integration. :vartype pod_identity_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProfile :ivar oidc_issuer_profile: The OIDC issuer profile of the Managed Cluster. :vartype oidc_issuer_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterOIDCIssuerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterOIDCIssuerProfile :ivar node_resource_group: The name of the resource group containing agent pool nodes. :vartype node_resource_group: str :ivar enable_rbac: Whether to enable Kubernetes Role-Based Access Control. @@ -2092,28 +2118,28 @@ class ManagedCluster(TrackedResource): :vartype enable_namespace_resources: bool :ivar network_profile: The network configuration profile. :vartype network_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceNetworkProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceNetworkProfile :ivar aad_profile: The Azure Active Directory configuration. :vartype aad_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAADProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAADProfile :ivar auto_upgrade_profile: The auto upgrade configuration. :vartype auto_upgrade_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAutoUpgradeProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAutoUpgradeProfile :ivar auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. :vartype auto_scaler_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPropertiesAutoScalerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPropertiesAutoScalerProfile :ivar api_server_access_profile: The access profile for managed cluster API server. :vartype api_server_access_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAPIServerAccessProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAPIServerAccessProfile :ivar disk_encryption_set_id: This is of the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. :vartype disk_encryption_set_id: str :ivar identity_profile: Identities associated with the cluster. :vartype identity_profile: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.UserAssignedIdentity] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.UserAssignedIdentity] :ivar private_link_resources: Private link resources associated with the cluster. :vartype private_link_resources: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource] :ivar disable_local_accounts: If set to true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters that are AAD enabled. For more details see `disable local accounts @@ -2121,20 +2147,20 @@ class ManagedCluster(TrackedResource): :vartype disable_local_accounts: bool :ivar http_proxy_config: Configurations for provisioning the cluster with HTTP proxy servers. :vartype http_proxy_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterHTTPProxyConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterHTTPProxyConfig :ivar security_profile: Security profile for the managed cluster. :vartype security_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfile :ivar storage_profile: Storage profile for the managed cluster. :vartype storage_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfile :ivar ingress_profile: Ingress profile for the managed cluster. :vartype ingress_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIngressProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIngressProfile :ivar public_network_access: Allow or deny public network access for AKS. Possible values include: "Enabled", "Disabled". :vartype public_network_access: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PublicNetworkAccess + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PublicNetworkAccess """ _validation = { @@ -2245,16 +2271,16 @@ def __init__( :keyword location: Required. The geo-location where the resource lives. :paramtype location: str :keyword sku: The managed cluster SKU. - :paramtype sku: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKU + :paramtype sku: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKU :keyword extended_location: The extended location of the Virtual Machine. :paramtype extended_location: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ExtendedLocation + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ExtendedLocation :keyword identity: The identity of the managed cluster, if configured. :paramtype identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIdentity :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the cluster will be created/upgraded using a snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword kubernetes_version: When you upgrade a supported AKS cluster, Kubernetes minor versions cannot be skipped. All upgrades must be performed sequentially by major version number. For example, upgrades between 1.14.x -> 1.15.x or 1.15.x -> 1.16.x are allowed, however @@ -2267,28 +2293,28 @@ def __init__( :paramtype fqdn_subdomain: str :keyword agent_pool_profiles: The agent pool properties. :paramtype agent_pool_profiles: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAgentPoolProfile] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAgentPoolProfile] :keyword linux_profile: The profile for Linux VMs in the Managed Cluster. :paramtype linux_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceLinuxProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceLinuxProfile :keyword windows_profile: The profile for Windows VMs in the Managed Cluster. :paramtype windows_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterWindowsProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterWindowsProfile :keyword service_principal_profile: Information about a service principal identity for the cluster to use for manipulating Azure APIs. :paramtype service_principal_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterServicePrincipalProfile :keyword addon_profiles: The profile of managed cluster add-on. :paramtype addon_profiles: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAddonProfile] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAddonProfile] :keyword pod_identity_profile: See `use AAD pod identity `_ for more details on AAD pod identity integration. :paramtype pod_identity_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProfile :keyword oidc_issuer_profile: The OIDC issuer profile of the Managed Cluster. :paramtype oidc_issuer_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterOIDCIssuerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterOIDCIssuerProfile :keyword node_resource_group: The name of the resource group containing agent pool nodes. :paramtype node_resource_group: str :keyword enable_rbac: Whether to enable Kubernetes Role-Based Access Control. @@ -2303,28 +2329,28 @@ def __init__( :paramtype enable_namespace_resources: bool :keyword network_profile: The network configuration profile. :paramtype network_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ContainerServiceNetworkProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ContainerServiceNetworkProfile :keyword aad_profile: The Azure Active Directory configuration. :paramtype aad_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAADProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAADProfile :keyword auto_upgrade_profile: The auto upgrade configuration. :paramtype auto_upgrade_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAutoUpgradeProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAutoUpgradeProfile :keyword auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. :paramtype auto_scaler_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPropertiesAutoScalerProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPropertiesAutoScalerProfile :keyword api_server_access_profile: The access profile for managed cluster API server. :paramtype api_server_access_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAPIServerAccessProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAPIServerAccessProfile :keyword disk_encryption_set_id: This is of the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. :paramtype disk_encryption_set_id: str :keyword identity_profile: Identities associated with the cluster. :paramtype identity_profile: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.UserAssignedIdentity] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.UserAssignedIdentity] :keyword private_link_resources: Private link resources associated with the cluster. :paramtype private_link_resources: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource] :keyword disable_local_accounts: If set to true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters that are AAD enabled. For more details see `disable local accounts @@ -2333,20 +2359,20 @@ def __init__( :keyword http_proxy_config: Configurations for provisioning the cluster with HTTP proxy servers. :paramtype http_proxy_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterHTTPProxyConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterHTTPProxyConfig :keyword security_profile: Security profile for the managed cluster. :paramtype security_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfile :keyword storage_profile: Storage profile for the managed cluster. :paramtype storage_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfile :keyword ingress_profile: Ingress profile for the managed cluster. :paramtype ingress_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIngressProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIngressProfile :keyword public_network_access: Allow or deny public network access for AKS. Possible values include: "Enabled", "Disabled". :paramtype public_network_access: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PublicNetworkAccess + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PublicNetworkAccess """ super(ManagedCluster, self).__init__(tags=tags, location=location, **kwargs) self.sku = sku @@ -2478,7 +2504,7 @@ class ManagedClusterAccessProfile(TrackedResource): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar tags: A set of tags. Resource tags. :vartype tags: dict[str, str] :ivar location: Required. The geo-location where the resource lives. @@ -2538,7 +2564,7 @@ class ManagedClusterAddonProfile(msrest.serialization.Model): :vartype config: dict[str, str] :ivar identity: Information of user assigned identity used by this add-on. :vartype identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAddonProfileIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAddonProfileIdentity """ _validation = { @@ -2669,15 +2695,15 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): `_. Possible values include: "Managed", "Ephemeral". :vartype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :vartype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :ivar workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :vartype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :ivar message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -2696,10 +2722,12 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :vartype max_pods: int :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :ivar max_count: The maximum number of nodes for auto-scaling. :vartype max_count: int :ivar min_count: The minimum number of nodes for auto-scaling. @@ -2709,15 +2737,15 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :ivar scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :vartype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :ivar type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :vartype type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + :vartype type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :ivar mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :vartype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :vartype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :ivar orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -2736,14 +2764,14 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :vartype node_image_version: str :ivar upgrade_settings: Settings for upgrading the agentpool. :vartype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :ivar power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :vartype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :ivar availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :vartype availability_zones: list[str] @@ -2754,18 +2782,22 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): `_. The default is false. :vartype enable_node_public_ip: bool + :ivar enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :vartype enable_custom_ca_trust: bool :ivar node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :vartype node_public_ip_prefix_id: str :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :vartype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :ivar scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :vartype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :ivar spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -2781,9 +2813,9 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :ivar proximity_placement_group_id: The ID for Proximity Placement Group. :vartype proximity_placement_group_id: str :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. - :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :ivar linux_os_config: The OS configuration of Linux agent nodes. - :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :ivar enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -2797,10 +2829,10 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :vartype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :vartype capacity_reservation_group_id: str @@ -2844,6 +2876,7 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): 'power_state': {'key': 'powerState', 'type': 'PowerState'}, 'availability_zones': {'key': 'availabilityZones', 'type': '[str]'}, 'enable_node_public_ip': {'key': 'enableNodePublicIP', 'type': 'bool'}, + 'enable_custom_ca_trust': {'key': 'enableCustomCATrust', 'type': 'bool'}, 'node_public_ip_prefix_id': {'key': 'nodePublicIPPrefixID', 'type': 'str'}, 'scale_set_priority': {'key': 'scaleSetPriority', 'type': 'str'}, 'scale_set_eviction_policy': {'key': 'scaleSetEvictionPolicy', 'type': 'str'}, @@ -2890,6 +2923,7 @@ def __init__( power_state: Optional["PowerState"] = None, availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, + enable_custom_ca_trust: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Optional[Union[str, "ScaleSetPriority"]] = "Regular", scale_set_eviction_policy: Optional[Union[str, "ScaleSetEvictionPolicy"]] = "Delete", @@ -2928,15 +2962,15 @@ def __init__( `_. Possible values include: "Managed", "Ephemeral". :paramtype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :paramtype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :keyword workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :paramtype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :keyword message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -2955,10 +2989,12 @@ def __init__( :paramtype max_pods: int :keyword os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :keyword os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :keyword max_count: The maximum number of nodes for auto-scaling. :paramtype max_count: int :keyword min_count: The minimum number of nodes for auto-scaling. @@ -2968,15 +3004,15 @@ def __init__( :keyword scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :paramtype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :keyword type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :paramtype type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + :paramtype type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :keyword mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :paramtype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :paramtype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :keyword orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -2993,12 +3029,12 @@ def __init__( :paramtype current_orchestrator_version: str :keyword upgrade_settings: Settings for upgrading the agentpool. :paramtype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :keyword power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :paramtype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :paramtype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :keyword availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :paramtype availability_zones: list[str] @@ -3009,18 +3045,22 @@ def __init__( `_. The default is false. :paramtype enable_node_public_ip: bool + :keyword enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :paramtype enable_custom_ca_trust: bool :keyword node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :paramtype node_public_ip_prefix_id: str :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :paramtype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :keyword scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :paramtype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :keyword spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -3037,10 +3077,10 @@ def __init__( :paramtype proximity_placement_group_id: str :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. :paramtype kubelet_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :keyword linux_os_config: The OS configuration of Linux agent nodes. :paramtype linux_os_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :keyword enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -3055,10 +3095,10 @@ def __init__( profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :paramtype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :paramtype capacity_reservation_group_id: str @@ -3095,6 +3135,7 @@ def __init__( self.power_state = power_state self.availability_zones = availability_zones self.enable_node_public_ip = enable_node_public_ip + self.enable_custom_ca_trust = enable_custom_ca_trust self.node_public_ip_prefix_id = node_public_ip_prefix_id self.scale_set_priority = scale_set_priority self.scale_set_eviction_policy = scale_set_eviction_policy @@ -3139,15 +3180,15 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): `_. Possible values include: "Managed", "Ephemeral". :vartype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :vartype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :ivar workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :vartype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :ivar message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -3166,10 +3207,12 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :vartype max_pods: int :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :ivar max_count: The maximum number of nodes for auto-scaling. :vartype max_count: int :ivar min_count: The minimum number of nodes for auto-scaling. @@ -3179,15 +3222,15 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :ivar scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :vartype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :ivar type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :vartype type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + :vartype type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :ivar mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :vartype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :vartype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :ivar orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -3206,14 +3249,14 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :vartype node_image_version: str :ivar upgrade_settings: Settings for upgrading the agentpool. :vartype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :ivar power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :vartype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :ivar availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :vartype availability_zones: list[str] @@ -3224,18 +3267,22 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): `_. The default is false. :vartype enable_node_public_ip: bool + :ivar enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :vartype enable_custom_ca_trust: bool :ivar node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :vartype node_public_ip_prefix_id: str :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :vartype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :ivar scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :vartype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :ivar spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -3251,9 +3298,9 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :ivar proximity_placement_group_id: The ID for Proximity Placement Group. :vartype proximity_placement_group_id: str :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. - :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + :vartype kubelet_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :ivar linux_os_config: The OS configuration of Linux agent nodes. - :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + :vartype linux_os_config: ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :ivar enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -3267,10 +3314,10 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :vartype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :vartype capacity_reservation_group_id: str @@ -3317,6 +3364,7 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): 'power_state': {'key': 'powerState', 'type': 'PowerState'}, 'availability_zones': {'key': 'availabilityZones', 'type': '[str]'}, 'enable_node_public_ip': {'key': 'enableNodePublicIP', 'type': 'bool'}, + 'enable_custom_ca_trust': {'key': 'enableCustomCATrust', 'type': 'bool'}, 'node_public_ip_prefix_id': {'key': 'nodePublicIPPrefixID', 'type': 'str'}, 'scale_set_priority': {'key': 'scaleSetPriority', 'type': 'str'}, 'scale_set_eviction_policy': {'key': 'scaleSetEvictionPolicy', 'type': 'str'}, @@ -3365,6 +3413,7 @@ def __init__( power_state: Optional["PowerState"] = None, availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, + enable_custom_ca_trust: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Optional[Union[str, "ScaleSetPriority"]] = "Regular", scale_set_eviction_policy: Optional[Union[str, "ScaleSetEvictionPolicy"]] = "Delete", @@ -3403,15 +3452,15 @@ def __init__( `_. Possible values include: "Managed", "Ephemeral". :paramtype os_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSDiskType :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". :paramtype kubelet_disk_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletDiskType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletDiskType :keyword workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". :paramtype workload_runtime: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WorkloadRuntime + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WorkloadRuntime :keyword message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be @@ -3430,10 +3479,12 @@ def __init__( :paramtype max_pods: int :keyword os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :keyword os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :paramtype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :keyword max_count: The maximum number of nodes for auto-scaling. :paramtype max_count: int :keyword min_count: The minimum number of nodes for auto-scaling. @@ -3443,15 +3494,15 @@ def __init__( :keyword scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". :paramtype scale_down_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleDownMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleDownMode :keyword type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :paramtype type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolType + :paramtype type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolType :keyword mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :paramtype mode: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolMode + :paramtype mode: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolMode :keyword orchestrator_version: Both patch version and are supported. When is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same once it has been created @@ -3468,12 +3519,12 @@ def __init__( :paramtype current_orchestrator_version: str :keyword upgrade_settings: Settings for upgrading the agentpool. :paramtype upgrade_settings: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeSettings :keyword power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :paramtype power_state: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PowerState + :paramtype power_state: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PowerState :keyword availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :paramtype availability_zones: list[str] @@ -3484,18 +3535,22 @@ def __init__( `_. The default is false. :paramtype enable_node_public_ip: bool + :keyword enable_custom_ca_trust: When set to true, AKS deploys a daemonset and host services to + sync custom certificate authorities from a user-provided config map into node trust stores. + Defaults to false. + :paramtype enable_custom_ca_trust: bool :keyword node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. :paramtype node_public_ip_prefix_id: str :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :paramtype scale_set_priority: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetPriority :keyword scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :paramtype scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ScaleSetEvictionPolicy :keyword spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -3512,10 +3567,10 @@ def __init__( :paramtype proximity_placement_group_id: str :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. :paramtype kubelet_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.KubeletConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.KubeletConfig :keyword linux_os_config: The OS configuration of Linux agent nodes. :paramtype linux_os_config: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LinuxOSConfig + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LinuxOSConfig :keyword enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -3530,10 +3585,10 @@ def __init__( profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :paramtype gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.GPUInstanceProfile :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group. :paramtype capacity_reservation_group_id: str @@ -3545,7 +3600,7 @@ def __init__( :keyword name: Required. Windows agent pool names must be 6 characters or less. :paramtype name: str """ - super(ManagedClusterAgentPoolProfile, self).__init__(count=count, vm_size=vm_size, os_disk_size_gb=os_disk_size_gb, os_disk_type=os_disk_type, kubelet_disk_type=kubelet_disk_type, workload_runtime=workload_runtime, message_of_the_day=message_of_the_day, vnet_subnet_id=vnet_subnet_id, pod_subnet_id=pod_subnet_id, max_pods=max_pods, os_type=os_type, os_sku=os_sku, max_count=max_count, min_count=min_count, enable_auto_scaling=enable_auto_scaling, scale_down_mode=scale_down_mode, type=type, mode=mode, orchestrator_version=orchestrator_version, current_orchestrator_version=current_orchestrator_version, upgrade_settings=upgrade_settings, power_state=power_state, availability_zones=availability_zones, enable_node_public_ip=enable_node_public_ip, node_public_ip_prefix_id=node_public_ip_prefix_id, scale_set_priority=scale_set_priority, scale_set_eviction_policy=scale_set_eviction_policy, spot_max_price=spot_max_price, tags=tags, node_labels=node_labels, node_taints=node_taints, proximity_placement_group_id=proximity_placement_group_id, kubelet_config=kubelet_config, linux_os_config=linux_os_config, enable_encryption_at_host=enable_encryption_at_host, enable_ultra_ssd=enable_ultra_ssd, enable_fips=enable_fips, gpu_instance_profile=gpu_instance_profile, creation_data=creation_data, capacity_reservation_group_id=capacity_reservation_group_id, host_group_id=host_group_id, **kwargs) + super(ManagedClusterAgentPoolProfile, self).__init__(count=count, vm_size=vm_size, os_disk_size_gb=os_disk_size_gb, os_disk_type=os_disk_type, kubelet_disk_type=kubelet_disk_type, workload_runtime=workload_runtime, message_of_the_day=message_of_the_day, vnet_subnet_id=vnet_subnet_id, pod_subnet_id=pod_subnet_id, max_pods=max_pods, os_type=os_type, os_sku=os_sku, max_count=max_count, min_count=min_count, enable_auto_scaling=enable_auto_scaling, scale_down_mode=scale_down_mode, type=type, mode=mode, orchestrator_version=orchestrator_version, current_orchestrator_version=current_orchestrator_version, upgrade_settings=upgrade_settings, power_state=power_state, availability_zones=availability_zones, enable_node_public_ip=enable_node_public_ip, enable_custom_ca_trust=enable_custom_ca_trust, node_public_ip_prefix_id=node_public_ip_prefix_id, scale_set_priority=scale_set_priority, scale_set_eviction_policy=scale_set_eviction_policy, spot_max_price=spot_max_price, tags=tags, node_labels=node_labels, node_taints=node_taints, proximity_placement_group_id=proximity_placement_group_id, kubelet_config=kubelet_config, linux_os_config=linux_os_config, enable_encryption_at_host=enable_encryption_at_host, enable_ultra_ssd=enable_ultra_ssd, enable_fips=enable_fips, gpu_instance_profile=gpu_instance_profile, creation_data=creation_data, capacity_reservation_group_id=capacity_reservation_group_id, host_group_id=host_group_id, **kwargs) self.name = name @@ -3569,6 +3624,12 @@ class ManagedClusterAPIServerAccessProfile(msrest.serialization.Model): :vartype enable_private_cluster_public_fqdn: bool :ivar disable_run_command: Whether to disable run command for the cluster or not. :vartype disable_run_command: bool + :ivar enable_vnet_integration: Whether to enable apiserver vnet integration for the cluster or + not. + :vartype enable_vnet_integration: bool + :ivar subnet_id: It is required when: 1. creating a new cluster with BYO Vnet; 2. updating an + existing cluster to enable apiserver vnet integration. + :vartype subnet_id: str """ _attribute_map = { @@ -3577,6 +3638,8 @@ class ManagedClusterAPIServerAccessProfile(msrest.serialization.Model): 'private_dns_zone': {'key': 'privateDNSZone', 'type': 'str'}, 'enable_private_cluster_public_fqdn': {'key': 'enablePrivateClusterPublicFQDN', 'type': 'bool'}, 'disable_run_command': {'key': 'disableRunCommand', 'type': 'bool'}, + 'enable_vnet_integration': {'key': 'enableVnetIntegration', 'type': 'bool'}, + 'subnet_id': {'key': 'subnetId', 'type': 'str'}, } def __init__( @@ -3587,6 +3650,8 @@ def __init__( private_dns_zone: Optional[str] = None, enable_private_cluster_public_fqdn: Optional[bool] = None, disable_run_command: Optional[bool] = None, + enable_vnet_integration: Optional[bool] = None, + subnet_id: Optional[str] = None, **kwargs ): """ @@ -3607,6 +3672,12 @@ def __init__( :paramtype enable_private_cluster_public_fqdn: bool :keyword disable_run_command: Whether to disable run command for the cluster or not. :paramtype disable_run_command: bool + :keyword enable_vnet_integration: Whether to enable apiserver vnet integration for the cluster + or not. + :paramtype enable_vnet_integration: bool + :keyword subnet_id: It is required when: 1. creating a new cluster with BYO Vnet; 2. updating + an existing cluster to enable apiserver vnet integration. + :paramtype subnet_id: str """ super(ManagedClusterAPIServerAccessProfile, self).__init__(**kwargs) self.authorized_ip_ranges = authorized_ip_ranges @@ -3614,6 +3685,8 @@ def __init__( self.private_dns_zone = private_dns_zone self.enable_private_cluster_public_fqdn = enable_private_cluster_public_fqdn self.disable_run_command = disable_run_command + self.enable_vnet_integration = enable_vnet_integration + self.subnet_id = subnet_id class ManagedClusterAutoUpgradeProfile(msrest.serialization.Model): @@ -3623,7 +3696,7 @@ class ManagedClusterAutoUpgradeProfile(msrest.serialization.Model): `_. Possible values include: "rapid", "stable", "patch", "node-image", "none". :vartype upgrade_channel: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.UpgradeChannel + ~azure.mgmt.containerservice.v2022_04_02_preview.models.UpgradeChannel """ _attribute_map = { @@ -3641,7 +3714,7 @@ def __init__( channel `_. Possible values include: "rapid", "stable", "patch", "node-image", "none". :paramtype upgrade_channel: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.UpgradeChannel + ~azure.mgmt.containerservice.v2022_04_02_preview.models.UpgradeChannel """ super(ManagedClusterAutoUpgradeProfile, self).__init__(**kwargs) self.upgrade_channel = upgrade_channel @@ -3719,11 +3792,11 @@ class ManagedClusterIdentity(msrest.serialization.Model): `_. Possible values include: "SystemAssigned", "UserAssigned", "None". :vartype type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceIdentityType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceIdentityType :ivar user_assigned_identities: The keys must be ARM resource IDs in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. :vartype user_assigned_identities: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedServiceIdentityUserAssignedIdentitiesValue] """ _validation = { @@ -3750,11 +3823,11 @@ def __init__( `_. Possible values include: "SystemAssigned", "UserAssigned", "None". :paramtype type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceIdentityType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceIdentityType :keyword user_assigned_identities: The keys must be ARM resource IDs in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. :paramtype user_assigned_identities: dict[str, - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedServiceIdentityUserAssignedIdentitiesValue] """ super(ManagedClusterIdentity, self).__init__(**kwargs) self.principal_id = None @@ -3768,7 +3841,7 @@ class ManagedClusterIngressProfile(msrest.serialization.Model): :ivar web_app_routing: Web App Routing settings for the ingress profile. :vartype web_app_routing: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIngressProfileWebAppRouting + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIngressProfileWebAppRouting """ _attribute_map = { @@ -3784,7 +3857,7 @@ def __init__( """ :keyword web_app_routing: Web App Routing settings for the ingress profile. :paramtype web_app_routing: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterIngressProfileWebAppRouting + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterIngressProfileWebAppRouting """ super(ManagedClusterIngressProfile, self).__init__(**kwargs) self.web_app_routing = web_app_routing @@ -3830,7 +3903,7 @@ class ManagedClusterListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of managed clusters. - :vartype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + :vartype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] :ivar next_link: The URL to get the next set of managed cluster results. :vartype next_link: str """ @@ -3852,7 +3925,7 @@ def __init__( ): """ :keyword value: The list of managed clusters. - :paramtype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + :paramtype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] """ super(ManagedClusterListResult, self).__init__(**kwargs) self.value = value @@ -3864,17 +3937,17 @@ class ManagedClusterLoadBalancerProfile(msrest.serialization.Model): :ivar managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. :vartype managed_outbound_i_ps: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs :ivar outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load balancer. :vartype outbound_ip_prefixes: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes :ivar outbound_i_ps: Desired outbound IP resources for the cluster load balancer. :vartype outbound_i_ps: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPs + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPs :ivar effective_outbound_i_ps: The effective outbound IP resources of the cluster load balancer. :vartype effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] :ivar allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports. @@ -3917,18 +3990,18 @@ def __init__( """ :keyword managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. :paramtype managed_outbound_i_ps: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs :keyword outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load balancer. :paramtype outbound_ip_prefixes: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes :keyword outbound_i_ps: Desired outbound IP resources for the cluster load balancer. :paramtype outbound_i_ps: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPs + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterLoadBalancerProfileOutboundIPs :keyword effective_outbound_i_ps: The effective outbound IP resources of the cluster load balancer. :paramtype effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] :keyword allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports. @@ -4000,7 +4073,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(msrest.serialization.M :ivar public_ip_prefixes: A list of public IP prefix resources. :vartype public_ip_prefixes: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] """ _attribute_map = { @@ -4016,7 +4089,7 @@ def __init__( """ :keyword public_ip_prefixes: A list of public IP prefix resources. :paramtype public_ip_prefixes: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] """ super(ManagedClusterLoadBalancerProfileOutboundIPPrefixes, self).__init__(**kwargs) self.public_ip_prefixes = public_ip_prefixes @@ -4027,7 +4100,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPs(msrest.serialization.Model): :ivar public_i_ps: A list of public IP resources. :vartype public_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] """ _attribute_map = { @@ -4043,7 +4116,7 @@ def __init__( """ :keyword public_i_ps: A list of public IP resources. :paramtype public_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] """ super(ManagedClusterLoadBalancerProfileOutboundIPs, self).__init__(**kwargs) self.public_i_ps = public_i_ps @@ -4086,10 +4159,10 @@ class ManagedClusterNATGatewayProfile(msrest.serialization.Model): :ivar managed_outbound_ip_profile: Profile of the managed outbound IP resources of the cluster NAT gateway. :vartype managed_outbound_ip_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterManagedOutboundIPProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterManagedOutboundIPProfile :ivar effective_outbound_i_ps: The effective outbound IP resources of the cluster NAT gateway. :vartype effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] :ivar idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values are in the range of 4 to 120 (inclusive). The default value is 4 minutes. :vartype idle_timeout_in_minutes: int @@ -4117,11 +4190,11 @@ def __init__( :keyword managed_outbound_ip_profile: Profile of the managed outbound IP resources of the cluster NAT gateway. :paramtype managed_outbound_ip_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterManagedOutboundIPProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterManagedOutboundIPProfile :keyword effective_outbound_i_ps: The effective outbound IP resources of the cluster NAT gateway. :paramtype effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ResourceReference] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ResourceReference] :keyword idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values are in the range of 4 to 120 (inclusive). The default value is 4 minutes. :paramtype idle_timeout_in_minutes: int @@ -4181,14 +4254,14 @@ class ManagedClusterPodIdentity(msrest.serialization.Model): :ivar binding_selector: The binding selector to use for the AzureIdentityBinding resource. :vartype binding_selector: str :ivar identity: Required. The user assigned identity details. - :vartype identity: ~azure.mgmt.containerservice.v2022_03_02_preview.models.UserAssignedIdentity + :vartype identity: ~azure.mgmt.containerservice.v2022_04_02_preview.models.UserAssignedIdentity :ivar provisioning_state: The current provisioning state of the pod identity. Possible values include: "Assigned", "Updating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningState + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningState :ivar provisioning_info: :vartype provisioning_info: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningInfo + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningInfo """ _validation = { @@ -4226,7 +4299,7 @@ def __init__( :paramtype binding_selector: str :keyword identity: Required. The user assigned identity details. :paramtype identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.UserAssignedIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.UserAssignedIdentity """ super(ManagedClusterPodIdentity, self).__init__(**kwargs) self.name = name @@ -4297,10 +4370,10 @@ class ManagedClusterPodIdentityProfile(msrest.serialization.Model): :vartype allow_network_plugin_kubenet: bool :ivar user_assigned_identities: The pod identities to use in the cluster. :vartype user_assigned_identities: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentity] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentity] :ivar user_assigned_identity_exceptions: The pod identity exceptions to allow. :vartype user_assigned_identity_exceptions: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityException] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityException] """ _attribute_map = { @@ -4330,10 +4403,10 @@ def __init__( :paramtype allow_network_plugin_kubenet: bool :keyword user_assigned_identities: The pod identities to use in the cluster. :paramtype user_assigned_identities: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentity] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentity] :keyword user_assigned_identity_exceptions: The pod identity exceptions to allow. :paramtype user_assigned_identity_exceptions: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityException] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityException] """ super(ManagedClusterPodIdentityProfile, self).__init__(**kwargs) self.enabled = enabled @@ -4347,7 +4420,7 @@ class ManagedClusterPodIdentityProvisioningError(msrest.serialization.Model): :ivar error: Details about the error. :vartype error: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody """ _attribute_map = { @@ -4363,7 +4436,7 @@ def __init__( """ :keyword error: Details about the error. :paramtype error: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody """ super(ManagedClusterPodIdentityProvisioningError, self).__init__(**kwargs) self.error = error @@ -4383,7 +4456,7 @@ class ManagedClusterPodIdentityProvisioningErrorBody(msrest.serialization.Model) :vartype target: str :ivar details: A list of additional details about the error. :vartype details: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody] """ _attribute_map = { @@ -4414,7 +4487,7 @@ def __init__( :paramtype target: str :keyword details: A list of additional details about the error. :paramtype details: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningErrorBody] """ super(ManagedClusterPodIdentityProvisioningErrorBody, self).__init__(**kwargs) self.code = code @@ -4428,7 +4501,7 @@ class ManagedClusterPodIdentityProvisioningInfo(msrest.serialization.Model): :ivar error: Pod identity assignment error (if any). :vartype error: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningError + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningError """ _attribute_map = { @@ -4444,7 +4517,7 @@ def __init__( """ :keyword error: Pod identity assignment error (if any). :paramtype error: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPodIdentityProvisioningError + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPodIdentityProvisioningError """ super(ManagedClusterPodIdentityProvisioningInfo, self).__init__(**kwargs) self.error = error @@ -4461,10 +4534,10 @@ class ManagedClusterPoolUpgradeProfile(msrest.serialization.Model): :vartype name: str :ivar os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType :ivar upgrades: List of orchestrator types and versions available for upgrade. :vartype upgrades: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfileUpgradesItem] """ _validation = { @@ -4495,10 +4568,10 @@ def __init__( :paramtype name: str :keyword os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType + :paramtype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType :keyword upgrades: List of orchestrator types and versions available for upgrade. :paramtype upgrades: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfileUpgradesItem] """ super(ManagedClusterPoolUpgradeProfile, self).__init__(**kwargs) self.kubernetes_version = kubernetes_version @@ -4548,7 +4621,7 @@ class ManagedClusterPropertiesAutoScalerProfile(msrest.serialization.Model): `_ for more information. Possible values include: "least-waste", "most-pods", "priority", "random". - :vartype expander: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Expander + :vartype expander: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Expander :ivar max_empty_bulk_delete: The default is 10. :vartype max_empty_bulk_delete: str :ivar max_graceful_termination_sec: The default is 600. @@ -4639,7 +4712,7 @@ def __init__( `_ for more information. Possible values include: "least-waste", "most-pods", "priority", "random". - :paramtype expander: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Expander + :paramtype expander: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Expander :keyword max_empty_bulk_delete: The default is 10. :paramtype max_empty_bulk_delete: str :keyword max_graceful_termination_sec: The default is 600. @@ -4709,12 +4782,12 @@ class ManagedClusterPropertiesForSnapshot(msrest.serialization.Model): :ivar kubernetes_version: The current kubernetes version. :vartype kubernetes_version: str :ivar sku: The current managed cluster sku. - :vartype sku: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKU + :vartype sku: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKU :ivar enable_rbac: Whether the cluster has enabled Kubernetes Role-Based Access Control or not. :vartype enable_rbac: bool :ivar network_profile: The current network profile. :vartype network_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkProfileForSnapshot + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkProfileForSnapshot """ _validation = { @@ -4740,7 +4813,7 @@ def __init__( :keyword kubernetes_version: The current kubernetes version. :paramtype kubernetes_version: str :keyword sku: The current managed cluster sku. - :paramtype sku: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKU + :paramtype sku: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKU :keyword enable_rbac: Whether the cluster has enabled Kubernetes Role-Based Access Control or not. :paramtype enable_rbac: bool @@ -4757,16 +4830,16 @@ class ManagedClusterSecurityProfile(msrest.serialization.Model): :ivar azure_defender: Azure Defender settings for the security profile. :vartype azure_defender: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfileAzureDefender + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfileAzureDefender :ivar azure_key_vault_kms: Azure Key Vault `key management service `_ settings for the security profile. :vartype azure_key_vault_kms: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AzureKeyVaultKms + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AzureKeyVaultKms :ivar workload_identity: `Workload Identity `_ settings for the security profile. :vartype workload_identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfileWorkloadIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfileWorkloadIdentity """ _attribute_map = { @@ -4786,16 +4859,16 @@ def __init__( """ :keyword azure_defender: Azure Defender settings for the security profile. :paramtype azure_defender: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfileAzureDefender + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfileAzureDefender :keyword azure_key_vault_kms: Azure Key Vault `key management service `_ settings for the security profile. :paramtype azure_key_vault_kms: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.AzureKeyVaultKms + ~azure.mgmt.containerservice.v2022_04_02_preview.models.AzureKeyVaultKms :keyword workload_identity: `Workload Identity `_ settings for the security profile. :paramtype workload_identity: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSecurityProfileWorkloadIdentity + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSecurityProfileWorkloadIdentity """ super(ManagedClusterSecurityProfile, self).__init__(**kwargs) self.azure_defender = azure_defender @@ -4907,12 +4980,12 @@ class ManagedClusterSKU(msrest.serialization.Model): :ivar name: The name of a managed cluster SKU. Possible values include: "Basic". :vartype name: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKUName + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKUName :ivar tier: If not specified, the default is 'Free'. See `uptime SLA `_ for more details. Possible values include: "Paid", "Free". :vartype tier: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKUTier + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKUTier """ _attribute_map = { @@ -4930,12 +5003,12 @@ def __init__( """ :keyword name: The name of a managed cluster SKU. Possible values include: "Basic". :paramtype name: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKUName + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKUName :keyword tier: If not specified, the default is 'Free'. See `uptime SLA `_ for more details. Possible values include: "Paid", "Free". :paramtype tier: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSKUTier + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSKUTier """ super(ManagedClusterSKU, self).__init__(**kwargs) self.name = name @@ -4959,22 +5032,22 @@ class ManagedClusterSnapshot(TrackedResource): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar tags: A set of tags. Resource tags. :vartype tags: dict[str, str] :ivar location: Required. The geo-location where the resource lives. :vartype location: str :ivar creation_data: CreationData to be used to specify the source resource ID to create this snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool", "ManagedCluster". Default value: "NodePool". :vartype snapshot_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotType :ivar managed_cluster_properties_read_only: What the properties will be showed when getting managed cluster snapshot. Those properties are read-only. :vartype managed_cluster_properties_read_only: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPropertiesForSnapshot + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPropertiesForSnapshot """ _validation = { @@ -5014,11 +5087,11 @@ def __init__( :paramtype location: str :keyword creation_data: CreationData to be used to specify the source resource ID to create this snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool", "ManagedCluster". Default value: "NodePool". :paramtype snapshot_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotType """ super(ManagedClusterSnapshot, self).__init__(tags=tags, location=location, **kwargs) self.creation_data = creation_data @@ -5033,7 +5106,7 @@ class ManagedClusterSnapshotListResult(msrest.serialization.Model): :ivar value: The list of managed cluster snapshots. :vartype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot] :ivar next_link: The URL to get the next set of managed cluster snapshot results. :vartype next_link: str """ @@ -5056,7 +5129,7 @@ def __init__( """ :keyword value: The list of managed cluster snapshots. :paramtype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot] """ super(ManagedClusterSnapshotListResult, self).__init__(**kwargs) self.value = value @@ -5068,13 +5141,13 @@ class ManagedClusterStorageProfile(msrest.serialization.Model): :ivar disk_csi_driver: AzureDisk CSI Driver settings for the storage profile. :vartype disk_csi_driver: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileDiskCSIDriver + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileDiskCSIDriver :ivar file_csi_driver: AzureFile CSI Driver settings for the storage profile. :vartype file_csi_driver: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileFileCSIDriver + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileFileCSIDriver :ivar snapshot_controller: Snapshot Controller settings for the storage profile. :vartype snapshot_controller: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileSnapshotController + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileSnapshotController """ _attribute_map = { @@ -5094,13 +5167,13 @@ def __init__( """ :keyword disk_csi_driver: AzureDisk CSI Driver settings for the storage profile. :paramtype disk_csi_driver: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileDiskCSIDriver + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileDiskCSIDriver :keyword file_csi_driver: AzureFile CSI Driver settings for the storage profile. :paramtype file_csi_driver: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileFileCSIDriver + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileFileCSIDriver :keyword snapshot_controller: Snapshot Controller settings for the storage profile. :paramtype snapshot_controller: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterStorageProfileSnapshotController + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterStorageProfileSnapshotController """ super(ManagedClusterStorageProfile, self).__init__(**kwargs) self.disk_csi_driver = disk_csi_driver @@ -5206,10 +5279,10 @@ class ManagedClusterUpgradeProfile(msrest.serialization.Model): :ivar control_plane_profile: Required. The list of available upgrade versions for the control plane. :vartype control_plane_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfile :ivar agent_pool_profiles: Required. The list of available upgrade versions for agent pools. :vartype agent_pool_profiles: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfile] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfile] """ _validation = { @@ -5239,10 +5312,10 @@ def __init__( :keyword control_plane_profile: Required. The list of available upgrade versions for the control plane. :paramtype control_plane_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfile :keyword agent_pool_profiles: Required. The list of available upgrade versions for agent pools. :paramtype agent_pool_profiles: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterPoolUpgradeProfile] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterPoolUpgradeProfile] """ super(ManagedClusterUpgradeProfile, self).__init__(**kwargs) self.id = None @@ -5277,13 +5350,13 @@ class ManagedClusterWindowsProfile(msrest.serialization.Model): `_ for more details. Possible values include: "None", "Windows_Server". :vartype license_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LicenseType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LicenseType :ivar enable_csi_proxy: For more details on CSI proxy, see the `CSI proxy GitHub repo `_. :vartype enable_csi_proxy: bool :ivar gmsa_profile: The Windows gMSA Profile in the Managed Cluster. :vartype gmsa_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WindowsGmsaProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WindowsGmsaProfile """ _validation = { @@ -5329,13 +5402,13 @@ def __init__( `_ for more details. Possible values include: "None", "Windows_Server". :paramtype license_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LicenseType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LicenseType :keyword enable_csi_proxy: For more details on CSI proxy, see the `CSI proxy GitHub repo `_. :paramtype enable_csi_proxy: bool :keyword gmsa_profile: The Windows gMSA Profile in the Managed Cluster. :paramtype gmsa_profile: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.WindowsGmsaProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.WindowsGmsaProfile """ super(ManagedClusterWindowsProfile, self).__init__(**kwargs) self.admin_username = admin_username @@ -5383,23 +5456,28 @@ class NetworkProfileForSnapshot(msrest.serialization.Model): :ivar network_plugin: networkPlugin for managed cluster snapshot. Possible values include: "azure", "kubenet", "none". Default value: "kubenet". :vartype network_plugin: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPlugin + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPlugin + :ivar network_plugin_mode: NetworkPluginMode for managed cluster snapshot. Possible values + include: "Overlay". + :vartype network_plugin_mode: str or + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPluginMode :ivar network_policy: networkPolicy for managed cluster snapshot. Possible values include: "calico", "azure". :vartype network_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPolicy :ivar network_mode: networkMode for managed cluster snapshot. Possible values include: "transparent", "bridge". :vartype network_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkMode :ivar load_balancer_sku: loadBalancerSku for managed cluster snapshot. Possible values include: "standard", "basic". :vartype load_balancer_sku: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LoadBalancerSku + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LoadBalancerSku """ _attribute_map = { 'network_plugin': {'key': 'networkPlugin', 'type': 'str'}, + 'network_plugin_mode': {'key': 'networkPluginMode', 'type': 'str'}, 'network_policy': {'key': 'networkPolicy', 'type': 'str'}, 'network_mode': {'key': 'networkMode', 'type': 'str'}, 'load_balancer_sku': {'key': 'loadBalancerSku', 'type': 'str'}, @@ -5409,6 +5487,7 @@ def __init__( self, *, network_plugin: Optional[Union[str, "NetworkPlugin"]] = "kubenet", + network_plugin_mode: Optional[Union[str, "NetworkPluginMode"]] = None, network_policy: Optional[Union[str, "NetworkPolicy"]] = None, network_mode: Optional[Union[str, "NetworkMode"]] = None, load_balancer_sku: Optional[Union[str, "LoadBalancerSku"]] = None, @@ -5418,22 +5497,27 @@ def __init__( :keyword network_plugin: networkPlugin for managed cluster snapshot. Possible values include: "azure", "kubenet", "none". Default value: "kubenet". :paramtype network_plugin: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPlugin + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPlugin + :keyword network_plugin_mode: NetworkPluginMode for managed cluster snapshot. Possible values + include: "Overlay". + :paramtype network_plugin_mode: str or + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPluginMode :keyword network_policy: networkPolicy for managed cluster snapshot. Possible values include: "calico", "azure". :paramtype network_policy: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkPolicy + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkPolicy :keyword network_mode: networkMode for managed cluster snapshot. Possible values include: "transparent", "bridge". :paramtype network_mode: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.NetworkMode + ~azure.mgmt.containerservice.v2022_04_02_preview.models.NetworkMode :keyword load_balancer_sku: loadBalancerSku for managed cluster snapshot. Possible values include: "standard", "basic". :paramtype load_balancer_sku: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.LoadBalancerSku + ~azure.mgmt.containerservice.v2022_04_02_preview.models.LoadBalancerSku """ super(NetworkProfileForSnapshot, self).__init__(**kwargs) self.network_plugin = network_plugin + self.network_plugin_mode = network_plugin_mode self.network_policy = network_policy self.network_mode = network_mode self.load_balancer_sku = load_balancer_sku @@ -5445,7 +5529,7 @@ class OperationListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of operations. - :vartype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.OperationValue] + :vartype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.OperationValue] """ _validation = { @@ -5533,7 +5617,7 @@ class OSOptionProfile(msrest.serialization.Model): :vartype type: str :ivar os_option_property_list: Required. The list of OS options. :vartype os_option_property_list: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.OSOptionProperty] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.OSOptionProperty] """ _validation = { @@ -5559,7 +5643,7 @@ def __init__( """ :keyword os_option_property_list: Required. The list of OS options. :paramtype os_option_property_list: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.OSOptionProperty] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.OSOptionProperty] """ super(OSOptionProfile, self).__init__(**kwargs) self.id = None @@ -5615,7 +5699,7 @@ class OutboundEnvironmentEndpoint(msrest.serialization.Model): :vartype category: str :ivar endpoints: The endpoints that AKS agent nodes connect to. :vartype endpoints: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.EndpointDependency] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.EndpointDependency] """ _attribute_map = { @@ -5636,7 +5720,7 @@ def __init__( :paramtype category: str :keyword endpoints: The endpoints that AKS agent nodes connect to. :paramtype endpoints: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.EndpointDependency] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.EndpointDependency] """ super(OutboundEnvironmentEndpoint, self).__init__(**kwargs) self.category = category @@ -5652,7 +5736,7 @@ class OutboundEnvironmentEndpointCollection(msrest.serialization.Model): :ivar value: Required. Collection of resources. :vartype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundEnvironmentEndpoint] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundEnvironmentEndpoint] :ivar next_link: Link to next page of resources. :vartype next_link: str """ @@ -5676,7 +5760,7 @@ def __init__( """ :keyword value: Required. Collection of resources. :paramtype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundEnvironmentEndpoint] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundEnvironmentEndpoint] """ super(OutboundEnvironmentEndpointCollection, self).__init__(**kwargs) self.value = value @@ -5688,7 +5772,7 @@ class PowerState(msrest.serialization.Model): :ivar code: Tells whether the cluster is Running or Stopped. Possible values include: "Running", "Stopped". - :vartype code: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Code + :vartype code: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Code """ _attribute_map = { @@ -5704,7 +5788,7 @@ def __init__( """ :keyword code: Tells whether the cluster is Running or Stopped. Possible values include: "Running", "Stopped". - :paramtype code: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Code + :paramtype code: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Code """ super(PowerState, self).__init__(**kwargs) self.code = code @@ -5749,14 +5833,14 @@ class PrivateEndpointConnection(msrest.serialization.Model): :ivar provisioning_state: The current provisioning state. Possible values include: "Succeeded", "Creating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnectionProvisioningState + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnectionProvisioningState :ivar private_endpoint: The resource of private endpoint. :vartype private_endpoint: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpoint + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpoint :ivar private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider. :vartype private_link_service_connection_state: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkServiceConnectionState + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkServiceConnectionState """ _validation = { @@ -5785,11 +5869,11 @@ def __init__( """ :keyword private_endpoint: The resource of private endpoint. :paramtype private_endpoint: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpoint + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpoint :keyword private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider. :paramtype private_link_service_connection_state: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkServiceConnectionState + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkServiceConnectionState """ super(PrivateEndpointConnection, self).__init__(**kwargs) self.id = None @@ -5805,7 +5889,7 @@ class PrivateEndpointConnectionListResult(msrest.serialization.Model): :ivar value: The collection value. :vartype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection] """ _attribute_map = { @@ -5821,7 +5905,7 @@ def __init__( """ :keyword value: The collection value. :paramtype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection] """ super(PrivateEndpointConnectionListResult, self).__init__(**kwargs) self.value = value @@ -5896,7 +5980,7 @@ class PrivateLinkResourcesListResult(msrest.serialization.Model): :ivar value: The collection value. :vartype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource] """ _attribute_map = { @@ -5912,7 +5996,7 @@ def __init__( """ :keyword value: The collection value. :paramtype value: - list[~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource] """ super(PrivateLinkResourcesListResult, self).__init__(**kwargs) self.value = value @@ -5924,7 +6008,7 @@ class PrivateLinkServiceConnectionState(msrest.serialization.Model): :ivar status: The private link service connection status. Possible values include: "Pending", "Approved", "Rejected", "Disconnected". :vartype status: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ConnectionStatus + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ConnectionStatus :ivar description: The private link service connection description. :vartype description: str """ @@ -5945,7 +6029,7 @@ def __init__( :keyword status: The private link service connection status. Possible values include: "Pending", "Approved", "Rejected", "Disconnected". :paramtype status: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ConnectionStatus + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ConnectionStatus :keyword description: The private link service connection description. :paramtype description: str """ @@ -6098,28 +6182,30 @@ class Snapshot(TrackedResource): :vartype type: str :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information. - :vartype system_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData :ivar tags: A set of tags. Resource tags. :vartype tags: dict[str, str] :ivar location: Required. The geo-location where the resource lives. :vartype location: str :ivar creation_data: CreationData to be used to specify the source agent pool resource ID to create this snapshot. - :vartype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :vartype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :ivar snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool", "ManagedCluster". Default value: "NodePool". :vartype snapshot_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotType :ivar kubernetes_version: The version of Kubernetes. :vartype kubernetes_version: str :ivar node_image_version: The version of node image. :vartype node_image_version: str :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSType - :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. - Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSSKU + :vartype os_type: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is + Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be + changed to Windows2022 after Windows2019 is deprecated. Possible values include: "Ubuntu", + "CBLMariner", "Windows2019", "Windows2022". + :vartype os_sku: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSSKU :ivar vm_size: The size of the VM. :vartype vm_size: str :ivar enable_fips: Whether to use a FIPS-enabled OS. @@ -6173,11 +6259,11 @@ def __init__( :paramtype location: str :keyword creation_data: CreationData to be used to specify the source agent pool resource ID to create this snapshot. - :paramtype creation_data: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreationData + :paramtype creation_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreationData :keyword snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool", "ManagedCluster". Default value: "NodePool". :paramtype snapshot_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotType """ super(Snapshot, self).__init__(tags=tags, location=location, **kwargs) self.creation_data = creation_data @@ -6196,7 +6282,7 @@ class SnapshotListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of snapshots. - :vartype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot] + :vartype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot] :ivar next_link: The URL to get the next set of snapshot results. :vartype next_link: str """ @@ -6218,7 +6304,7 @@ def __init__( ): """ :keyword value: The list of snapshots. - :paramtype value: list[~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot] + :paramtype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot] """ super(SnapshotListResult, self).__init__(**kwargs) self.value = value @@ -6447,7 +6533,7 @@ class SystemData(msrest.serialization.Model): :ivar created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :vartype created_by_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreatedByType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreatedByType :ivar created_at: The timestamp of resource creation (UTC). :vartype created_at: ~datetime.datetime :ivar last_modified_by: The identity that last modified the resource. @@ -6455,7 +6541,7 @@ class SystemData(msrest.serialization.Model): :ivar last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :vartype last_modified_by_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreatedByType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreatedByType :ivar last_modified_at: The timestamp of resource last modification (UTC). :vartype last_modified_at: ~datetime.datetime """ @@ -6486,7 +6572,7 @@ def __init__( :keyword created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :paramtype created_by_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreatedByType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreatedByType :keyword created_at: The timestamp of resource creation (UTC). :paramtype created_at: ~datetime.datetime :keyword last_modified_by: The identity that last modified the resource. @@ -6494,7 +6580,7 @@ def __init__( :keyword last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :paramtype last_modified_by_type: str or - ~azure.mgmt.containerservice.v2022_03_02_preview.models.CreatedByType + ~azure.mgmt.containerservice.v2022_04_02_preview.models.CreatedByType :keyword last_modified_at: The timestamp of resource last modification (UTC). :paramtype last_modified_at: ~datetime.datetime """ @@ -6537,7 +6623,7 @@ class TimeInWeek(msrest.serialization.Model): :ivar day: The day of the week. Possible values include: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday". - :vartype day: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.WeekDay + :vartype day: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.WeekDay :ivar hour_slots: Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. @@ -6559,7 +6645,7 @@ def __init__( """ :keyword day: The day of the week. Possible values include: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday". - :paramtype day: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.WeekDay + :paramtype day: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.WeekDay :keyword hour_slots: Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. @@ -6602,6 +6688,233 @@ def __init__( self.end = end +class TrustedAccessRole(msrest.serialization.Model): + """Trusted access role definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar source_resource_type: Resource type of Azure resource. + :vartype source_resource_type: str + :ivar name: Name of role, name is unique under a source resource type. + :vartype name: str + :ivar rules: List of rules for the role. This maps to 'rules' property of `Kubernetes Cluster + Role + `_. + :vartype rules: + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleRule] + """ + + _validation = { + 'source_resource_type': {'readonly': True}, + 'name': {'readonly': True}, + 'rules': {'readonly': True}, + } + + _attribute_map = { + 'source_resource_type': {'key': 'sourceResourceType', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'rules': {'key': 'rules', 'type': '[TrustedAccessRoleRule]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(TrustedAccessRole, self).__init__(**kwargs) + self.source_resource_type = None + self.name = None + self.rules = None + + +class TrustedAccessRoleBinding(Resource): + """Defines binding between a resource and role. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Fully qualified resource ID for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.v2022_04_02_preview.models.SystemData + :ivar provisioning_state: The current provisioning state of trusted access role binding. + Possible values include: "Succeeded", "Failed", "Updating", "Deleting". + :vartype provisioning_state: str or + ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBindingProvisioningState + :ivar source_resource_id: Required. The ARM resource ID of source resource that trusted access + is configured for. + :vartype source_resource_id: str + :ivar roles: Required. A list of roles to bind, each item is a resource type qualified role + name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'. + :vartype roles: list[str] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'system_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'source_resource_id': {'required': True}, + 'roles': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'system_data': {'key': 'systemData', 'type': 'SystemData'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'source_resource_id': {'key': 'properties.sourceResourceId', 'type': 'str'}, + 'roles': {'key': 'properties.roles', 'type': '[str]'}, + } + + def __init__( + self, + *, + source_resource_id: str, + roles: List[str], + **kwargs + ): + """ + :keyword source_resource_id: Required. The ARM resource ID of source resource that trusted + access is configured for. + :paramtype source_resource_id: str + :keyword roles: Required. A list of roles to bind, each item is a resource type qualified role + name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'. + :paramtype roles: list[str] + """ + super(TrustedAccessRoleBinding, self).__init__(**kwargs) + self.provisioning_state = None + self.source_resource_id = source_resource_id + self.roles = roles + + +class TrustedAccessRoleBindingListResult(msrest.serialization.Model): + """List of trusted access role bindings. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Role binding list. + :vartype value: + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[TrustedAccessRoleBinding]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["TrustedAccessRoleBinding"]] = None, + **kwargs + ): + """ + :keyword value: Role binding list. + :paramtype value: + list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding] + """ + super(TrustedAccessRoleBindingListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class TrustedAccessRoleListResult(msrest.serialization.Model): + """List of trusted access roles. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Role list. + :vartype value: list[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRole] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[TrustedAccessRole]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(TrustedAccessRoleListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class TrustedAccessRoleRule(msrest.serialization.Model): + """Rule for trusted access role. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar verbs: List of allowed verbs. + :vartype verbs: list[str] + :ivar api_groups: List of allowed apiGroups. + :vartype api_groups: list[str] + :ivar resources: List of allowed resources. + :vartype resources: list[str] + :ivar resource_names: List of allowed names. + :vartype resource_names: list[str] + :ivar non_resource_ur_ls: List of allowed nonResourceURLs. + :vartype non_resource_ur_ls: list[str] + """ + + _validation = { + 'verbs': {'readonly': True}, + 'api_groups': {'readonly': True}, + 'resources': {'readonly': True}, + 'resource_names': {'readonly': True}, + 'non_resource_ur_ls': {'readonly': True}, + } + + _attribute_map = { + 'verbs': {'key': 'verbs', 'type': '[str]'}, + 'api_groups': {'key': 'apiGroups', 'type': '[str]'}, + 'resources': {'key': 'resources', 'type': '[str]'}, + 'resource_names': {'key': 'resourceNames', 'type': '[str]'}, + 'non_resource_ur_ls': {'key': 'nonResourceURLs', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(TrustedAccessRoleRule, self).__init__(**kwargs) + self.verbs = None + self.api_groups = None + self.resources = None + self.resource_names = None + self.non_resource_ur_ls = None + + class WindowsGmsaProfile(msrest.serialization.Model): """Windows gMSA Profile in the managed cluster. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/__init__.py similarity index 85% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/__init__.py index 78e2791463e..4a901153368 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/__init__.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/__init__.py @@ -15,6 +15,8 @@ from ._resolve_private_link_service_id_operations import ResolvePrivateLinkServiceIdOperations from ._snapshots_operations import SnapshotsOperations from ._managed_cluster_snapshots_operations import ManagedClusterSnapshotsOperations +from ._trusted_access_roles_operations import TrustedAccessRolesOperations +from ._trusted_access_role_bindings_operations import TrustedAccessRoleBindingsOperations __all__ = [ 'Operations', @@ -26,4 +28,6 @@ 'ResolvePrivateLinkServiceIdOperations', 'SnapshotsOperations', 'ManagedClusterSnapshotsOperations', + 'TrustedAccessRolesOperations', + 'TrustedAccessRoleBindingsOperations', ] diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_agent_pools_operations.py similarity index 76% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_agent_pools_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_agent_pools_operations.py index 93f17838779..4183b2df75d 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_agent_pools_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -18,7 +19,6 @@ from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.arm_polling import ARMPolling -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -35,31 +35,32 @@ def build_list_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -71,10 +72,11 @@ def build_get_request( agent_pool_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -82,21 +84,21 @@ def build_get_request( "agentPoolName": _SERIALIZER.url("agent_pool_name", agent_pool_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -111,12 +113,12 @@ def build_create_or_update_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -124,23 +126,23 @@ def build_create_or_update_request_initial( "agentPoolName": _SERIALIZER.url("agent_pool_name", agent_pool_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -156,10 +158,11 @@ def build_delete_request_initial( ignore_pod_disruption_budget: Optional[bool] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -167,23 +170,23 @@ def build_delete_request_initial( "agentPoolName": _SERIALIZER.url("agent_pool_name", agent_pool_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if ignore_pod_disruption_budget is not None: - query_parameters['ignore-pod-disruption-budget'] = _SERIALIZER.query("ignore_pod_disruption_budget", ignore_pod_disruption_budget, 'bool') + _query_parameters['ignore-pod-disruption-budget'] = _SERIALIZER.query("ignore_pod_disruption_budget", ignore_pod_disruption_budget, 'bool') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -195,10 +198,11 @@ def build_get_upgrade_profile_request( agent_pool_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -206,21 +210,21 @@ def build_get_upgrade_profile_request( "agentPoolName": _SERIALIZER.url("agent_pool_name", agent_pool_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -231,31 +235,32 @@ def build_get_available_agent_pool_versions_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -267,10 +272,11 @@ def build_upgrade_node_image_version_request_initial( agent_pool_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -278,21 +284,21 @@ def build_upgrade_node_image_version_request_initial( "agentPoolName": _SERIALIZER.url("agent_pool_name", agent_pool_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -303,7 +309,7 @@ class AgentPoolsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -336,9 +342,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either AgentPoolListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -351,6 +359,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -362,6 +371,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -379,7 +389,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -392,7 +406,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools"} # type: ignore @distributed_trace def get( @@ -414,7 +428,7 @@ def get( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPool, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] @@ -423,18 +437,25 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -448,7 +469,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore def _create_or_update_initial( @@ -465,6 +486,7 @@ def _create_or_update_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'AgentPool') @@ -474,6 +496,7 @@ def _create_or_update_initial( resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_or_update_initial.metadata['url'], @@ -481,7 +504,11 @@ def _create_or_update_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -499,7 +526,7 @@ def _create_or_update_initial( return deserialized - _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace @@ -522,7 +549,7 @@ def begin_create_or_update( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param parameters: The agent pool to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -533,11 +560,12 @@ def begin_create_or_update( Retry-After header is present. :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) :rtype: - ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] lro_delay = kwargs.pop( 'polling_interval', @@ -550,6 +578,7 @@ def begin_create_or_update( resource_name=resource_name, agent_pool_name=agent_pool_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -574,12 +603,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore - def _delete_initial( + def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -593,19 +621,26 @@ def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, ignore_pod_disruption_budget=ignore_pod_disruption_budget, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -615,11 +650,11 @@ def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace - def begin_delete( + def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -638,7 +673,7 @@ def begin_delete( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on - a node without considering Pod Disruption Budget. + a node without considering Pod Disruption Budget. Default value is None. :type ignore_pod_disruption_budget: bool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -652,7 +687,8 @@ def begin_delete( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -665,6 +701,7 @@ def begin_delete( resource_name=resource_name, agent_pool_name=agent_pool_name, ignore_pod_disruption_budget=ignore_pod_disruption_budget, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -685,10 +722,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}"} # type: ignore @distributed_trace def get_upgrade_profile( @@ -710,7 +746,7 @@ def get_upgrade_profile( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolUpgradeProfile"] @@ -719,18 +755,25 @@ def get_upgrade_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_upgrade_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self.get_upgrade_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -744,7 +787,7 @@ def get_upgrade_profile( return deserialized - get_upgrade_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default'} # type: ignore + get_upgrade_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default"} # type: ignore @distributed_trace @@ -766,7 +809,7 @@ def get_available_agent_pool_versions( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolAvailableVersions, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPoolAvailableVersions + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPoolAvailableVersions :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolAvailableVersions"] @@ -775,17 +818,24 @@ def get_available_agent_pool_versions( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_available_agent_pool_versions_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get_available_agent_pool_versions.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -799,7 +849,7 @@ def get_available_agent_pool_versions( return deserialized - get_available_agent_pool_versions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions'} # type: ignore + get_available_agent_pool_versions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions"} # type: ignore def _upgrade_node_image_version_initial( @@ -815,18 +865,25 @@ def _upgrade_node_image_version_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_upgrade_node_image_version_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, template_url=self._upgrade_node_image_version_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -845,7 +902,7 @@ def _upgrade_node_image_version_initial( return deserialized - _upgrade_node_image_version_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore + _upgrade_node_image_version_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion"} # type: ignore @distributed_trace @@ -878,10 +935,11 @@ def begin_upgrade_node_image_version( Retry-After header is present. :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) :rtype: - ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.AgentPool] + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.AgentPool] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] lro_delay = kwargs.pop( 'polling_interval', @@ -893,6 +951,7 @@ def begin_upgrade_node_image_version( resource_group_name=resource_group_name, resource_name=resource_name, agent_pool_name=agent_pool_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -919,7 +978,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore + begin_upgrade_node_image_version.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_maintenance_configurations_operations.py similarity index 74% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_maintenance_configurations_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_maintenance_configurations_operations.py index d0b01bae2f1..5a36719abd2 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_maintenance_configurations_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -16,7 +17,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -33,31 +33,32 @@ def build_list_by_managed_cluster_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -69,10 +70,11 @@ def build_get_request( config_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -80,21 +82,21 @@ def build_get_request( "configName": _SERIALIZER.url("config_name", config_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -109,12 +111,12 @@ def build_create_or_update_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -122,23 +124,23 @@ def build_create_or_update_request( "configName": _SERIALIZER.url("config_name", config_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -152,10 +154,11 @@ def build_delete_request( config_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -163,21 +166,21 @@ def build_delete_request( "configName": _SERIALIZER.url("config_name", config_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -188,7 +191,7 @@ class MaintenanceConfigurationsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -222,9 +225,11 @@ def list_by_managed_cluster( :return: An iterator like instance of either MaintenanceConfigurationListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfigurationListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfigurationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfigurationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -237,6 +242,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list_by_managed_cluster.metadata['url'], ) request = _convert_request(request) @@ -248,6 +254,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -265,7 +272,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -278,7 +289,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_by_managed_cluster.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations'} # type: ignore + list_by_managed_cluster.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations"} # type: ignore @distributed_trace def get( @@ -300,7 +311,7 @@ def get( :type config_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -309,18 +320,25 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -334,7 +352,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore @distributed_trace @@ -358,10 +376,10 @@ def create_or_update( :type config_name: str :param parameters: The maintenance configuration to create or update. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -370,6 +388,7 @@ def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'MaintenanceConfiguration') @@ -379,6 +398,7 @@ def create_or_update( resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -386,7 +406,11 @@ def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -400,11 +424,11 @@ def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore @distributed_trace - def delete( + def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -432,18 +456,25 @@ def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, config_name=config_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -453,5 +484,5 @@ def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_cluster_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_cluster_snapshots_operations.py similarity index 72% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_cluster_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_cluster_snapshots_operations.py index 7911dc16b81..07b53c95b43 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_cluster_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_cluster_snapshots_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -16,7 +17,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -31,29 +31,30 @@ def build_list_request( subscription_id: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -63,30 +64,31 @@ def build_list_by_resource_group_request( resource_group_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -97,31 +99,32 @@ def build_get_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -135,35 +138,35 @@ def build_create_or_update_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -179,35 +182,35 @@ def build_update_tags_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PATCH", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -220,31 +223,32 @@ def build_delete_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -255,7 +259,7 @@ class ManagedClusterSnapshotsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -283,9 +287,11 @@ def list( :return: An iterator like instance of either ManagedClusterSnapshotListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshotListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -296,6 +302,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -305,6 +312,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -322,7 +330,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -335,7 +347,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedclustersnapshots"} # type: ignore @distributed_trace def list_by_resource_group( @@ -353,9 +365,11 @@ def list_by_resource_group( :return: An iterator like instance of either ManagedClusterSnapshotListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshotListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -367,6 +381,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -377,6 +392,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -394,7 +410,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -407,7 +427,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots"} # type: ignore @distributed_trace def get( @@ -426,7 +446,7 @@ def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -435,17 +455,24 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -459,7 +486,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace @@ -480,10 +507,10 @@ def create_or_update( :type resource_name: str :param parameters: The managed cluster snapshot to create or update. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -492,6 +519,7 @@ def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterSnapshot') @@ -500,6 +528,7 @@ def create_or_update( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -507,7 +536,11 @@ def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -525,7 +558,7 @@ def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace @@ -545,10 +578,10 @@ def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update managed cluster snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterSnapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterSnapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterSnapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterSnapshot"] @@ -557,6 +590,7 @@ def update_tags( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -565,6 +599,7 @@ def update_tags( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update_tags.metadata['url'], @@ -572,7 +607,11 @@ def update_tags( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -586,11 +625,11 @@ def update_tags( return deserialized - update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore @distributed_trace - def delete( + def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -615,17 +654,24 @@ def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -635,5 +681,5 @@ def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclustersnapshots/{resourceName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_clusters_operations.py similarity index 73% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_clusters_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_clusters_operations.py index 740458809df..ab5dc7873cb 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_managed_clusters_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -18,7 +19,6 @@ from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.arm_polling import ARMPolling -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -36,32 +36,33 @@ def build_get_os_options_request( resource_type: Optional[str] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "location": _SERIALIZER.url("location", location, 'str', min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if resource_type is not None: - query_parameters['resource-type'] = _SERIALIZER.query("resource_type", resource_type, 'str') + _query_parameters['resource-type'] = _SERIALIZER.query("resource_type", resource_type, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -70,29 +71,30 @@ def build_list_request( subscription_id: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters") path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -102,30 +104,31 @@ def build_list_by_resource_group_request( resource_group_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -136,31 +139,32 @@ def build_get_upgrade_profile_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -172,10 +176,11 @@ def build_get_access_profile_request( role_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -183,21 +188,21 @@ def build_get_access_profile_request( "roleName": _SERIALIZER.url("role_name", role_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -210,33 +215,34 @@ def build_list_cluster_admin_credentials_request( server_fqdn: Optional[str] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if server_fqdn is not None: - query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') + _query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -250,35 +256,36 @@ def build_list_cluster_user_credentials_request( format: Optional[Union[str, "_models.Format"]] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if server_fqdn is not None: - query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') + _query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') if format is not None: - query_parameters['format'] = _SERIALIZER.query("format", format, 'str') + _query_parameters['format'] = _SERIALIZER.query("format", format, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -291,33 +298,34 @@ def build_list_cluster_monitoring_user_credentials_request( server_fqdn: Optional[str] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if server_fqdn is not None: - query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') + _query_parameters['server-fqdn'] = _SERIALIZER.query("server_fqdn", server_fqdn, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -328,31 +336,32 @@ def build_get_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -366,35 +375,35 @@ def build_create_or_update_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -410,35 +419,35 @@ def build_update_tags_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PATCH", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -453,33 +462,34 @@ def build_delete_request_initial( ignore_pod_disruption_budget: Optional[bool] = None, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') if ignore_pod_disruption_budget is not None: - query_parameters['ignore-pod-disruption-budget'] = _SERIALIZER.query("ignore_pod_disruption_budget", ignore_pod_disruption_budget, 'bool') + _query_parameters['ignore-pod-disruption-budget'] = _SERIALIZER.query("ignore_pod_disruption_budget", ignore_pod_disruption_budget, 'bool') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -493,35 +503,35 @@ def build_reset_service_principal_profile_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -537,35 +547,35 @@ def build_reset_aad_profile_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -578,31 +588,32 @@ def build_rotate_cluster_certificates_request_initial( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -613,31 +624,32 @@ def build_rotate_service_account_signing_keys_request_initial( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -648,31 +660,32 @@ def build_stop_request_initial( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -683,31 +696,32 @@ def build_start_request_initial( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -721,35 +735,35 @@ def build_run_command_request_initial( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -763,10 +777,11 @@ def build_get_command_result_request( command_id: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -774,21 +789,21 @@ def build_get_command_result_request( "commandId": _SERIALIZER.url("command_id", command_id, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -799,42 +814,43 @@ def build_list_outbound_network_dependencies_endpoints_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) -class ManagedClustersOperations(object): +class ManagedClustersOperations(object): # pylint: disable=too-many-public-methods """ManagedClustersOperations operations. You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -862,11 +878,12 @@ def get_os_options( :param location: The name of Azure region. :type location: str - :param resource_type: The resource type for which the OS options needs to be returned. + :param resource_type: The resource type for which the OS options needs to be returned. Default + value is None. :type resource_type: str :keyword callable cls: A custom type or function that will be passed the direct response :return: OSOptionProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.OSOptionProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.OSOptionProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OSOptionProfile"] @@ -875,17 +892,24 @@ def get_os_options( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_os_options_request( subscription_id=self._config.subscription_id, location=location, + api_version=api_version, resource_type=resource_type, template_url=self.get_os_options.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -899,7 +923,7 @@ def get_os_options( return deserialized - get_os_options.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default'} # type: ignore + get_os_options.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default"} # type: ignore @distributed_trace @@ -915,9 +939,11 @@ def list( :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -928,6 +954,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -937,6 +964,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -954,7 +982,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -967,7 +999,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters"} # type: ignore @distributed_trace def list_by_resource_group( @@ -985,9 +1017,11 @@ def list_by_resource_group( :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -999,6 +1033,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -1009,6 +1044,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -1026,7 +1062,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1039,7 +1079,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters"} # type: ignore @distributed_trace def get_upgrade_profile( @@ -1058,7 +1098,7 @@ def get_upgrade_profile( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterUpgradeProfile"] @@ -1067,17 +1107,24 @@ def get_upgrade_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_upgrade_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get_upgrade_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1091,7 +1138,7 @@ def get_upgrade_profile( return deserialized - get_upgrade_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default'} # type: ignore + get_upgrade_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default"} # type: ignore @distributed_trace @@ -1117,7 +1164,7 @@ def get_access_profile( :type role_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterAccessProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAccessProfile + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAccessProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterAccessProfile"] @@ -1126,18 +1173,25 @@ def get_access_profile( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_access_profile_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, role_name=role_name, + api_version=api_version, template_url=self.get_access_profile.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1151,7 +1205,7 @@ def get_access_profile( return deserialized - get_access_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential'} # type: ignore + get_access_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential"} # type: ignore @distributed_trace @@ -1170,11 +1224,11 @@ def list_cluster_admin_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -1183,18 +1237,25 @@ def list_cluster_admin_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_admin_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, template_url=self.list_cluster_admin_credentials.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1208,7 +1269,7 @@ def list_cluster_admin_credentials( return deserialized - list_cluster_admin_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential'} # type: ignore + list_cluster_admin_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential"} # type: ignore @distributed_trace @@ -1228,15 +1289,15 @@ def list_cluster_user_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :param format: Only apply to AAD clusters, specifies the format of returned kubeconfig. Format 'azure' will return azure auth-provider kubeconfig; format 'exec' will return exec format - kubeconfig, which requires kubelogin binary in the path. - :type format: str or ~azure.mgmt.containerservice.v2022_03_02_preview.models.Format + kubeconfig, which requires kubelogin binary in the path. Default value is None. + :type format: str or ~azure.mgmt.containerservice.v2022_04_02_preview.models.Format :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -1245,11 +1306,14 @@ def list_cluster_user_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_user_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, format=format, template_url=self.list_cluster_user_credentials.metadata['url'], @@ -1257,7 +1321,11 @@ def list_cluster_user_credentials( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1271,7 +1339,7 @@ def list_cluster_user_credentials( return deserialized - list_cluster_user_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential'} # type: ignore + list_cluster_user_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential"} # type: ignore @distributed_trace @@ -1290,11 +1358,11 @@ def list_cluster_monitoring_user_credentials( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str - :param server_fqdn: server fqdn type for credentials to be returned. + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -1303,18 +1371,25 @@ def list_cluster_monitoring_user_credentials( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_cluster_monitoring_user_credentials_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, server_fqdn=server_fqdn, template_url=self.list_cluster_monitoring_user_credentials.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1328,7 +1403,7 @@ def list_cluster_monitoring_user_credentials( return deserialized - list_cluster_monitoring_user_credentials.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential'} # type: ignore + list_cluster_monitoring_user_credentials.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential"} # type: ignore @distributed_trace @@ -1348,7 +1423,7 @@ def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedCluster, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] @@ -1357,17 +1432,24 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1381,7 +1463,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore def _create_or_update_initial( @@ -1397,6 +1479,7 @@ def _create_or_update_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedCluster') @@ -1405,6 +1488,7 @@ def _create_or_update_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._create_or_update_initial.metadata['url'], @@ -1412,7 +1496,11 @@ def _create_or_update_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -1430,7 +1518,7 @@ def _create_or_update_initial( return deserialized - _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace @@ -1450,7 +1538,7 @@ def begin_create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The managed cluster to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -1462,11 +1550,12 @@ def begin_create_or_update( :return: An instance of LROPoller that returns either ManagedCluster or the result of cls(response) :rtype: - ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] lro_delay = kwargs.pop( 'polling_interval', @@ -1478,6 +1567,7 @@ def begin_create_or_update( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1502,10 +1592,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore def _update_tags_initial( self, @@ -1520,6 +1609,7 @@ def _update_tags_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -1528,6 +1618,7 @@ def _update_tags_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._update_tags_initial.metadata['url'], @@ -1535,7 +1626,11 @@ def _update_tags_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -1549,7 +1644,7 @@ def _update_tags_initial( return deserialized - _update_tags_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace @@ -1569,7 +1664,7 @@ def begin_update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -1581,11 +1676,12 @@ def begin_update_tags( :return: An instance of LROPoller that returns either ManagedCluster or the result of cls(response) :rtype: - ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedCluster] + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedCluster] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] lro_delay = kwargs.pop( 'polling_interval', @@ -1597,6 +1693,7 @@ def begin_update_tags( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1621,12 +1718,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore - def _delete_initial( + def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1639,18 +1735,25 @@ def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, ignore_pod_disruption_budget=ignore_pod_disruption_budget, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1660,11 +1763,11 @@ def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore @distributed_trace - def begin_delete( + def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1680,7 +1783,7 @@ def begin_delete( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on - a node without considering Pod Disruption Budget. + a node without considering Pod Disruption Budget. Default value is None. :type ignore_pod_disruption_budget: bool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. @@ -1694,7 +1797,8 @@ def begin_delete( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1706,6 +1810,7 @@ def begin_delete( resource_group_name=resource_group_name, resource_name=resource_name, ignore_pod_disruption_budget=ignore_pod_disruption_budget, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -1726,12 +1831,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}"} # type: ignore - def _reset_service_principal_profile_initial( + def _reset_service_principal_profile_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1744,6 +1848,7 @@ def _reset_service_principal_profile_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterServicePrincipalProfile') @@ -1752,6 +1857,7 @@ def _reset_service_principal_profile_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._reset_service_principal_profile_initial.metadata['url'], @@ -1759,7 +1865,11 @@ def _reset_service_principal_profile_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -1769,11 +1879,11 @@ def _reset_service_principal_profile_initial( if cls: return cls(pipeline_response, None, {}) - _reset_service_principal_profile_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile'} # type: ignore + _reset_service_principal_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile"} # type: ignore @distributed_trace - def begin_reset_service_principal_profile( + def begin_reset_service_principal_profile( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1790,7 +1900,7 @@ def begin_reset_service_principal_profile( :type resource_name: str :param parameters: The service principal profile to set on the managed cluster. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterServicePrincipalProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -1803,8 +1913,9 @@ def begin_reset_service_principal_profile( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1816,6 +1927,7 @@ def begin_reset_service_principal_profile( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1837,12 +1949,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_reset_service_principal_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile'} # type: ignore + begin_reset_service_principal_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile"} # type: ignore - def _reset_aad_profile_initial( + def _reset_aad_profile_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1855,6 +1966,7 @@ def _reset_aad_profile_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'ManagedClusterAADProfile') @@ -1863,6 +1975,7 @@ def _reset_aad_profile_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._reset_aad_profile_initial.metadata['url'], @@ -1870,7 +1983,11 @@ def _reset_aad_profile_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -1880,11 +1997,11 @@ def _reset_aad_profile_initial( if cls: return cls(pipeline_response, None, {}) - _reset_aad_profile_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile'} # type: ignore + _reset_aad_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile"} # type: ignore @distributed_trace - def begin_reset_aad_profile( + def begin_reset_aad_profile( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1901,7 +2018,7 @@ def begin_reset_aad_profile( :type resource_name: str :param parameters: The AAD profile to set on the Managed Cluster. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.ManagedClusterAADProfile + ~azure.mgmt.containerservice.v2022_04_02_preview.models.ManagedClusterAADProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -1914,8 +2031,9 @@ def begin_reset_aad_profile( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -1927,6 +2045,7 @@ def begin_reset_aad_profile( resource_group_name=resource_group_name, resource_name=resource_name, parameters=parameters, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -1948,12 +2067,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_reset_aad_profile.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile'} # type: ignore + begin_reset_aad_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile"} # type: ignore - def _rotate_cluster_certificates_initial( + def _rotate_cluster_certificates_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -1965,17 +2083,24 @@ def _rotate_cluster_certificates_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_rotate_cluster_certificates_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._rotate_cluster_certificates_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -1985,11 +2110,11 @@ def _rotate_cluster_certificates_initial( if cls: return cls(pipeline_response, None, {}) - _rotate_cluster_certificates_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates'} # type: ignore + _rotate_cluster_certificates_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates"} # type: ignore @distributed_trace - def begin_rotate_cluster_certificates( + def begin_rotate_cluster_certificates( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2016,7 +2141,8 @@ def begin_rotate_cluster_certificates( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -2027,6 +2153,7 @@ def begin_rotate_cluster_certificates( raw_result = self._rotate_cluster_certificates_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -2047,12 +2174,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_rotate_cluster_certificates.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates'} # type: ignore + begin_rotate_cluster_certificates.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates"} # type: ignore - def _rotate_service_account_signing_keys_initial( + def _rotate_service_account_signing_keys_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2064,17 +2190,24 @@ def _rotate_service_account_signing_keys_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_rotate_service_account_signing_keys_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._rotate_service_account_signing_keys_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -2084,11 +2217,11 @@ def _rotate_service_account_signing_keys_initial( if cls: return cls(pipeline_response, None, {}) - _rotate_service_account_signing_keys_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys'} # type: ignore + _rotate_service_account_signing_keys_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys"} # type: ignore @distributed_trace - def begin_rotate_service_account_signing_keys( + def begin_rotate_service_account_signing_keys( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2114,7 +2247,8 @@ def begin_rotate_service_account_signing_keys( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -2125,6 +2259,7 @@ def begin_rotate_service_account_signing_keys( raw_result = self._rotate_service_account_signing_keys_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -2145,12 +2280,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_rotate_service_account_signing_keys.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys'} # type: ignore + begin_rotate_service_account_signing_keys.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys"} # type: ignore - def _stop_initial( + def _stop_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2162,17 +2296,24 @@ def _stop_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_stop_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._stop_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -2182,11 +2323,11 @@ def _stop_initial( if cls: return cls(pipeline_response, None, {}) - _stop_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop'} # type: ignore + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop"} # type: ignore @distributed_trace - def begin_stop( + def begin_stop( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2216,7 +2357,8 @@ def begin_stop( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -2227,6 +2369,7 @@ def begin_stop( raw_result = self._stop_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -2247,12 +2390,11 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_stop.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop'} # type: ignore + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop"} # type: ignore - def _start_initial( + def _start_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2264,17 +2406,24 @@ def _start_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_start_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self._start_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [202, 204]: @@ -2284,11 +2433,11 @@ def _start_initial( if cls: return cls(pipeline_response, None, {}) - _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start'} # type: ignore + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start"} # type: ignore @distributed_trace - def begin_start( + def begin_start( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -2315,7 +2464,8 @@ def begin_start( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -2326,6 +2476,7 @@ def begin_start( raw_result = self._start_initial( resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -2346,10 +2497,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start'} # type: ignore + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start"} # type: ignore def _run_command_initial( self, @@ -2364,6 +2514,7 @@ def _run_command_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(request_payload, 'RunCommandRequest') @@ -2372,6 +2523,7 @@ def _run_command_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self._run_command_initial.metadata['url'], @@ -2379,7 +2531,11 @@ def _run_command_initial( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -2395,7 +2551,7 @@ def _run_command_initial( return deserialized - _run_command_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand'} # type: ignore + _run_command_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand"} # type: ignore @distributed_trace @@ -2418,7 +2574,7 @@ def begin_run_command( :type resource_name: str :param request_payload: The run command request. :type request_payload: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandRequest + ~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandRequest :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this @@ -2430,11 +2586,12 @@ def begin_run_command( :return: An instance of LROPoller that returns either RunCommandResult or the result of cls(response) :rtype: - ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandResult] + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.RunCommandResult"] lro_delay = kwargs.pop( 'polling_interval', @@ -2446,6 +2603,7 @@ def begin_run_command( resource_group_name=resource_group_name, resource_name=resource_name, request_payload=request_payload, + api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs @@ -2470,10 +2628,9 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_run_command.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand'} # type: ignore + begin_run_command.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand"} # type: ignore @distributed_trace def get_command_result( @@ -2495,7 +2652,7 @@ def get_command_result( :type command_id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: RunCommandResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.RunCommandResult or None + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.RunCommandResult or None :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.RunCommandResult"]] @@ -2504,18 +2661,25 @@ def get_command_result( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_command_result_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, command_id=command_id, + api_version=api_version, template_url=self.get_command_result.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 202]: @@ -2531,7 +2695,7 @@ def get_command_result( return deserialized - get_command_result.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}'} # type: ignore + get_command_result.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}"} # type: ignore @distributed_trace @@ -2555,9 +2719,11 @@ def list_outbound_network_dependencies_endpoints( :return: An iterator like instance of either OutboundEnvironmentEndpointCollection or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.OutboundEnvironmentEndpointCollection] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.OutboundEnvironmentEndpointCollection] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundEnvironmentEndpointCollection"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -2570,6 +2736,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list_outbound_network_dependencies_endpoints.metadata['url'], ) request = _convert_request(request) @@ -2581,6 +2748,7 @@ def prepare_request(next_link=None): subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -2598,7 +2766,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -2611,4 +2783,4 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_outbound_network_dependencies_endpoints.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints'} # type: ignore + list_outbound_network_dependencies_endpoints.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_operations.py similarity index 78% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_operations.py index 4999f601fa7..ae184749283 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -16,7 +17,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request @@ -29,24 +29,25 @@ def build_list_request( **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/providers/Microsoft.ContainerService/operations') + _url = kwargs.pop("template_url", "/providers/Microsoft.ContainerService/operations") # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -57,7 +58,7 @@ class Operations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -84,9 +85,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.OperationListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -96,6 +99,7 @@ def prepare_request(next_link=None): if not next_link: request = build_list_request( + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -104,6 +108,7 @@ def prepare_request(next_link=None): else: request = build_list_request( + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -121,7 +126,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -134,4 +143,4 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/providers/Microsoft.ContainerService/operations'} # type: ignore + list.metadata = {'url': "/providers/Microsoft.ContainerService/operations"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_endpoint_connections_operations.py similarity index 74% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_endpoint_connections_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_endpoint_connections_operations.py index f166d1e901e..12231c75e4e 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_endpoint_connections_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar, Union + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -17,7 +18,6 @@ from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.arm_polling import ARMPolling -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -34,31 +34,32 @@ def build_list_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -70,10 +71,11 @@ def build_get_request( private_endpoint_connection_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -81,21 +83,21 @@ def build_get_request( "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -110,12 +112,12 @@ def build_update_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -123,23 +125,23 @@ def build_update_request( "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -153,10 +155,11 @@ def build_delete_request_initial( private_endpoint_connection_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -164,21 +167,21 @@ def build_delete_request_initial( "privateEndpointConnectionName": _SERIALIZER.url("private_endpoint_connection_name", private_endpoint_connection_name, 'str'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -189,7 +192,7 @@ class PrivateEndpointConnectionsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -223,7 +226,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnectionListResult, or the result of cls(response) :rtype: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnectionListResult + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnectionListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] @@ -232,17 +235,24 @@ def list( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -256,7 +266,7 @@ def list( return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections"} # type: ignore @distributed_trace @@ -280,7 +290,7 @@ def get( :type private_endpoint_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -289,18 +299,25 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -314,7 +331,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore @distributed_trace @@ -338,10 +355,10 @@ def update( :type private_endpoint_connection_name: str :param parameters: The updated private endpoint connection. :type parameters: - ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -350,6 +367,7 @@ def update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'PrivateEndpointConnection') @@ -359,6 +377,7 @@ def update( resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update.metadata['url'], @@ -366,7 +385,11 @@ def update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -380,10 +403,10 @@ def update( return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore - def _delete_initial( + def _delete_initial( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -396,18 +419,25 @@ def _delete_initial( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -417,11 +447,11 @@ def _delete_initial( if cls: return cls(pipeline_response, None, {}) - _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore @distributed_trace - def begin_delete( + def begin_delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -450,7 +480,8 @@ def begin_delete( :rtype: ~azure.core.polling.LROPoller[None] :raises: ~azure.core.exceptions.HttpResponseError """ - polling = kwargs.pop('polling', True) # type: Union[bool, azure.core.polling.PollingMethod] + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', @@ -462,6 +493,7 @@ def begin_delete( resource_group_name=resource_group_name, resource_name=resource_name, private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, cls=lambda x,y,z: x, **kwargs ) @@ -482,7 +514,6 @@ def get_long_running_output(pipeline_response): client=self._client, deserialization_callback=get_long_running_output ) - else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}'} # type: ignore + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_link_resources_operations.py similarity index 77% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_link_resources_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_link_resources_operations.py index c375078e334..921a2089346 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_private_link_resources_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -15,7 +16,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -31,31 +31,32 @@ def build_list_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -66,7 +67,7 @@ class PrivateLinkResourcesOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -99,7 +100,7 @@ def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResourcesListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResourcesListResult + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResourcesListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResourcesListResult"] @@ -108,17 +109,24 @@ def list( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -132,5 +140,5 @@ def list( return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_resolve_private_link_service_id_operations.py similarity index 77% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_resolve_private_link_service_id_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_resolve_private_link_service_id_operations.py index be154f9a81c..ceda3264330 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_resolve_private_link_service_id_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Optional, TypeVar -import warnings +from typing import Any, Callable, Dict, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse @@ -15,7 +16,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -35,35 +35,35 @@ def build_post_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="POST", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -76,7 +76,7 @@ class ResolvePrivateLinkServiceIdOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -108,10 +108,10 @@ def post( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters required in order to resolve a private link service ID. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResource, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.PrivateLinkResource + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.PrivateLinkResource :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResource"] @@ -120,6 +120,7 @@ def post( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'PrivateLinkResource') @@ -128,6 +129,7 @@ def post( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.post.metadata['url'], @@ -135,7 +137,11 @@ def post( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -149,5 +155,5 @@ def post( return deserialized - post.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId'} # type: ignore + post.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_snapshots_operations.py similarity index 72% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_snapshots_operations.py index 0dc5e35078a..5b2ae3b1ada 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_03_02_preview/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_snapshots_operations.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -5,9 +6,9 @@ # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -import functools -from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union -import warnings +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged @@ -16,7 +17,6 @@ from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat -from msrest import Serializer from .. import models as _models from .._vendor import _convert_request, _format_url_section @@ -31,29 +31,30 @@ def build_list_request( subscription_id: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots") path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -63,30 +64,31 @@ def build_list_by_resource_group_request( resource_group_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -97,31 +99,32 @@ def build_get_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -135,35 +138,35 @@ def build_create_or_update_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -179,35 +182,35 @@ def build_update_tags_request( content: Any = None, **kwargs: Any ) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] - api_version = "2022-03-02-preview" accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: - header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PATCH", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, json=json, content=content, **kwargs @@ -220,31 +223,32 @@ def build_delete_request( resource_name: str, **kwargs: Any ) -> HttpRequest: - api_version = "2022-03-02-preview" + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + accept = "application/json" # Construct URL - url = kwargs.pop("template_url", '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}') + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } - url = _format_url_section(url, **path_format_arguments) + _url = _format_url_section(_url, **path_format_arguments) # Construct parameters - query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers - header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] - header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", - url=url, - params=query_parameters, - headers=header_parameters, + url=_url, + params=_query_parameters, + headers=_header_parameters, **kwargs ) @@ -255,7 +259,7 @@ class SnapshotsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2022_03_02_preview.models + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -282,9 +286,11 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -295,6 +301,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) @@ -304,6 +311,7 @@ def prepare_request(next_link=None): request = build_list_request( subscription_id=self._config.subscription_id, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -321,7 +329,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -334,7 +346,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots'} # type: ignore + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots"} # type: ignore @distributed_trace def list_by_resource_group( @@ -351,9 +363,11 @@ def list_by_resource_group( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) :rtype: - ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_03_02_preview.models.SnapshotListResult] + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError @@ -365,6 +379,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=self.list_by_resource_group.metadata['url'], ) request = _convert_request(request) @@ -375,6 +390,7 @@ def prepare_request(next_link=None): request = build_list_by_resource_group_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, + api_version=api_version, template_url=next_link, ) request = _convert_request(request) @@ -392,7 +408,11 @@ def extract_data(pipeline_response): def get_next(next_link=None): request = prepare_request(next_link) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -405,7 +425,7 @@ def get_next(next_link=None): return ItemPaged( get_next, extract_data ) - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots'} # type: ignore + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots"} # type: ignore @distributed_trace def get( @@ -424,7 +444,7 @@ def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -433,17 +453,24 @@ def get( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -457,7 +484,7 @@ def get( return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace @@ -477,10 +504,10 @@ def create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The snapshot to create or update. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -489,6 +516,7 @@ def create_or_update( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'Snapshot') @@ -497,6 +525,7 @@ def create_or_update( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.create_or_update.metadata['url'], @@ -504,7 +533,11 @@ def create_or_update( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 201]: @@ -522,7 +555,7 @@ def create_or_update( return deserialized - create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace @@ -542,10 +575,10 @@ def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2022_03_02_preview.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2022_03_02_preview.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -554,6 +587,7 @@ def update_tags( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(parameters, 'TagsObject') @@ -562,6 +596,7 @@ def update_tags( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, content_type=content_type, json=_json, template_url=self.update_tags.metadata['url'], @@ -569,7 +604,11 @@ def update_tags( request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200]: @@ -583,11 +622,11 @@ def update_tags( return deserialized - update_tags.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore @distributed_trace - def delete( + def delete( # pylint: disable=inconsistent-return-statements self, resource_group_name: str, resource_name: str, @@ -612,17 +651,24 @@ def delete( } error_map.update(kwargs.pop('error_map', {})) + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + request = build_delete_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, + api_version=api_version, template_url=self.delete.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) response = pipeline_response.http_response if response.status_code not in [200, 204]: @@ -632,5 +678,5 @@ def delete( if cls: return cls(pipeline_response, None, {}) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}'} # type: ignore + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}"} # type: ignore diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_role_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_role_bindings_operations.py new file mode 100644 index 00000000000..62ffc2dbddc --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_role_bindings_operations.py @@ -0,0 +1,488 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._vendor import _convert_request, _format_url_section +T = TypeVar('T') +JSONType = Any +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_list_request( + subscription_id: str, + resource_group_name: str, + resource_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_get_request( + subscription_id: str, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + "trustedAccessRoleBindingName": _SERIALIZER.url("trusted_access_role_binding_name", trusted_access_role_binding_name, 'str', max_length=36, min_length=1), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_create_or_update_request( + subscription_id: str, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + "trustedAccessRoleBindingName": _SERIALIZER.url("trusted_access_role_binding_name", trusted_access_role_binding_name, 'str', max_length=36, min_length=1), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_delete_request( + subscription_id: str, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + "trustedAccessRoleBindingName": _SERIALIZER.url("trusted_access_role_binding_name", trusted_access_role_binding_name, 'str', max_length=36, min_length=1), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + +class TrustedAccessRoleBindingsOperations(object): + """TrustedAccessRoleBindingsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + resource_name: str, + **kwargs: Any + ) -> Iterable["_models.TrustedAccessRoleBindingListResult"]: + """List trusted access role bindings. + + List trusted access role bindings. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either TrustedAccessRoleBindingListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBindingListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBindingListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBindingListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any + ) -> "_models.TrustedAccessRoleBinding": + """Get a trusted access role binding. + + Get a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: TrustedAccessRoleBinding, or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBinding"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + + request = build_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('TrustedAccessRoleBinding', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: "_models.TrustedAccessRoleBinding", + **kwargs: Any + ) -> "_models.TrustedAccessRoleBinding": + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. + :type trusted_access_role_binding: + ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :keyword callable cls: A custom type or function that will be passed the direct response + :return: TrustedAccessRoleBinding, or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleBinding + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleBinding"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(trusted_access_role_binding, 'TrustedAccessRoleBinding') + + request = build_create_or_update_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('TrustedAccessRoleBinding', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + + + @distributed_trace + def delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + **kwargs: Any + ) -> None: + """Delete a trusted access role binding. + + Delete a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. + :type trusted_access_role_binding_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + + request = build_delete_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + template_url=self.delete.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}"} # type: ignore + diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_roles_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_roles_operations.py new file mode 100644 index 00000000000..a4813ed26fe --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2022_04_02_preview/operations/_trusted_access_roles_operations.py @@ -0,0 +1,162 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar + +from msrest import Serializer + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._vendor import _convert_request, _format_url_section +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_list_request( + subscription_id: str, + location: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/trustedAccessRoles") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str', min_length=1), + "location": _SERIALIZER.url("location", location, 'str', min_length=1), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + +class TrustedAccessRolesOperations(object): + """TrustedAccessRolesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.containerservice.v2022_04_02_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.TrustedAccessRoleListResult"]: + """List supported trusted access roles. + + List supported trusted access roles. + + :param location: The name of Azure region. + :type location: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either TrustedAccessRoleListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2022_04_02_preview.models.TrustedAccessRoleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2022-04-02-preview") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.TrustedAccessRoleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_list_request( + subscription_id=self._config.subscription_id, + location=location, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_list_request( + subscription_id=self._config.subscription_id, + location=location, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/trustedAccessRoles"} # type: ignore diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index 4292b77c0b4..3513b530fee 100644 --- a/src/aks-preview/setup.py +++ b/src/aks-preview/setup.py @@ -24,9 +24,9 @@ DEPENDENCIES = [] -with open1("README.md", "r", encoding="utf-8") as f: +with open1("README.rst", "r", encoding="utf-8") as f: README = f.read() -with open1("HISTORY.md", "r", encoding="utf-8") as f: +with open1("HISTORY.rst", "r", encoding="utf-8") as f: HISTORY = f.read() setup(