diff --git a/linter_exclusions.yml b/linter_exclusions.yml index dcb6ce185f8..118fba2de57 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -256,6 +256,9 @@ aks create: node_osdisk_diskencryptionset_id: rule_exclusions: - option_length_too_long + enable-encryption-at-host: + rule_exclusions: + - option_length_too_long aks enable-addons: parameters: workspace_resource_id: @@ -271,6 +274,9 @@ aks nodepool add: enable_node_public_ip: rule_exclusions: - option_length_too_long + enable-encryption-at-host: + rule_exclusions: + - option_length_too_long aks update: parameters: aad_admin_group_object_ids: diff --git a/src/azure-cli/azure/cli/command_modules/acs/_help.py b/src/azure-cli/azure/cli/command_modules/acs/_help.py index 1c39b62f6f2..ba8c861b78a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_help.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_help.py @@ -446,6 +446,8 @@ text: az aks create -g MyResourceGroup -n MyManagedCluster --node-osdisk-diskencryptionset-id - name: Create a kubernetes cluster with ephemeral OS enabled. text: az aks create -g MyResourceGroup -n MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 + - name: Create a kubernetes cluster with EncryptionAtHost enabled. + text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-encryption-at-host """ helps['aks update'] = """ @@ -739,6 +741,8 @@ examples: - name: Create a nodepool in an existing AKS cluster with ephemeral os enabled. text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 + - name: Create a nodepool with EncryptionAtHost enabled. + text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-encryption-at-host """ helps['aks nodepool delete'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/acs/_helpers.py b/src/azure-cli/azure/cli/command_modules/acs/_helpers.py index cd54afa2b21..59ae9541f71 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_helpers.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_helpers.py @@ -5,7 +5,7 @@ from distutils.version import StrictVersion # pylint: disable=no-name-in-module,import-error # pylint: disable=no-name-in-module,import-error -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAPIServerAccessProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterAPIServerAccessProfile from knack.util import CLIError from ._consts import CONST_OUTBOUND_TYPE_LOAD_BALANCER, CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING diff --git a/src/azure-cli/azure/cli/command_modules/acs/_loadbalancer.py b/src/azure-cli/azure/cli/command_modules/acs/_loadbalancer.py index dd11c194fb3..ac10c3101a1 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_loadbalancer.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_loadbalancer.py @@ -6,11 +6,11 @@ from distutils.version import StrictVersion # pylint: disable=no-name-in-module,import-error # pylint: disable=no-name-in-module,import-error -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPs -from azure.mgmt.containerservice.v2020_09_01.models import ResourceReference +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileOutboundIPs +from azure.mgmt.containerservice.v2020_12_01.models import ResourceReference from knack.log import get_logger diff --git a/src/azure-cli/azure/cli/command_modules/acs/_params.py b/src/azure-cli/azure/cli/command_modules/acs/_params.py index 50595c767fb..41186ec62b4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_params.py @@ -217,6 +217,7 @@ def load_arguments(self, _): c.argument('enable_ahub', options_list=['--enable-ahub']) c.argument('node_osdisk_diskencryptionset_id', type=str, options_list=['--node-osdisk-diskencryptionset-id', '-d']) c.argument('aci_subnet_name') + c.argument('enable_encryption_at_host', options_list=['--enable-encryption-at-host'], action='store_true') c.argument('appgw_name', options_list=['--appgw-name'], arg_group='Application Gateway') c.argument('appgw_subnet_cidr', options_list=['--appgw-subnet-cidr'], arg_group='Application Gateway') c.argument('appgw_id', options_list=['--appgw-id'], arg_group='Application Gateway') @@ -317,6 +318,7 @@ def load_arguments(self, _): c.argument('ppg', type=str, validator=validate_ppg) c.argument('max_surge', type=str, validator=validate_max_surge) c.argument('node_os_disk_type', arg_type=get_enum_type([CONST_OS_DISK_TYPE_MANAGED, CONST_OS_DISK_TYPE_EPHEMERAL])) + c.argument('enable_encryption_at_host', options_list=['--enable-encryption-at-host'], action='store_true') for scope in ['aks nodepool show', 'aks nodepool delete', 'aks nodepool scale', 'aks nodepool upgrade', 'aks nodepool update']: with self.argument_context(scope) as c: diff --git a/src/azure-cli/azure/cli/command_modules/acs/_validators.py b/src/azure-cli/azure/cli/command_modules/acs/_validators.py index d9cd7bde289..acc10cddc9e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_validators.py @@ -18,7 +18,7 @@ from azure.cli.core.azclierror import InvalidArgumentValueError import azure.cli.core.keys as keys -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterPropertiesAutoScalerProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterPropertiesAutoScalerProfile logger = get_logger(__name__) diff --git a/src/azure-cli/azure/cli/command_modules/acs/commands.py b/src/azure-cli/azure/cli/command_modules/acs/commands.py index c70cb62d0bb..78f2fe0851d 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/commands.py @@ -30,7 +30,7 @@ def load_command_table(self, _): ) managed_clusters_sdk = CliCommandType( - operations_tmpl='azure.mgmt.containerservice.v2020_09_01.operations.' + operations_tmpl='azure.mgmt.containerservice.v2020_12_01.operations.' '_managed_clusters_operations#ManagedClustersOperations.{}', client_factory=cf_managed_clusters ) diff --git a/src/azure-cli/azure/cli/command_modules/acs/custom.py b/src/azure-cli/azure/cli/command_modules/acs/custom.py index 5ae95121f11..49e7bb8fd33 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/custom.py +++ b/src/azure-cli/azure/cli/command_modules/acs/custom.py @@ -63,21 +63,21 @@ from azure.mgmt.containerservice.models import ContainerServiceOrchestratorTypes -from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceNetworkProfile -from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceLinuxProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterServicePrincipalProfile -from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceSshConfiguration -from azure.mgmt.containerservice.v2020_09_01.models import ContainerServiceSshPublicKey -from azure.mgmt.containerservice.v2020_09_01.models import ManagedCluster -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAADProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAddonProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterAgentPoolProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterIdentity -from azure.mgmt.containerservice.v2020_09_01.models import AgentPool -from azure.mgmt.containerservice.v2020_09_01.models import AgentPoolUpgradeSettings -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterSKU -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterWindowsProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterIdentityUserAssignedIdentitiesValue +from azure.mgmt.containerservice.v2020_12_01.models import ContainerServiceNetworkProfile +from azure.mgmt.containerservice.v2020_12_01.models import ContainerServiceLinuxProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterServicePrincipalProfile +from azure.mgmt.containerservice.v2020_12_01.models import ContainerServiceSshConfiguration +from azure.mgmt.containerservice.v2020_12_01.models import ContainerServiceSshPublicKey +from azure.mgmt.containerservice.v2020_12_01.models import ManagedCluster +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterAADProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterAddonProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterAgentPoolProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterIdentity +from azure.mgmt.containerservice.v2020_12_01.models import AgentPool +from azure.mgmt.containerservice.v2020_12_01.models import AgentPoolUpgradeSettings +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterSKU +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterWindowsProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterIdentityUserAssignedIdentitiesValue from azure.mgmt.containerservice.v2019_09_30_preview.models import OpenShiftManagedClusterAgentPoolProfile from azure.mgmt.containerservice.v2019_09_30_preview.models import OpenShiftAgentPoolProfileRole @@ -1894,6 +1894,7 @@ def aks_create(cmd, client, resource_group_name, name, ssh_key_value, # pylint: appgw_subnet_id=None, appgw_watch_namespace=None, enable_sgxquotehelper=False, + enable_encryption_at_host=False, no_wait=False, yes=False): _validate_ssh_key(no_ssh_key, ssh_key_value) @@ -1922,6 +1923,7 @@ def aks_create(cmd, client, resource_group_name, name, ssh_key_value, # pylint: proximity_placement_group_id=ppg, availability_zones=zones, enable_node_public_ip=enable_node_public_ip, + enable_encryption_at_host=enable_encryption_at_host, max_pods=int(max_pods) if max_pods else None, type=vm_set_type, mode="System" @@ -3361,6 +3363,7 @@ def aks_agentpool_add(cmd, client, resource_group_name, cluster_name, nodepool_n labels=None, max_surge=None, mode="User", + enable_encryption_at_host=False, no_wait=False): instances = client.list(resource_group_name, cluster_name) for agentpool_profile in instances: @@ -3405,6 +3408,7 @@ def aks_agentpool_add(cmd, client, resource_group_name, cluster_name, nodepool_n enable_node_public_ip=enable_node_public_ip, node_taints=taints_array, upgrade_settings=upgradeSettings, + enable_encryption_at_host=enable_encryption_at_host, mode=mode ) diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml index 01a0cd64de5..b52c618db61 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -471,12 +471,12 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -551,7 +551,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -601,7 +601,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -651,7 +651,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -701,7 +701,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -751,7 +751,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -801,7 +801,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -851,7 +851,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -901,7 +901,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -951,7 +951,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -1001,7 +1001,7 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/996eebe2-6730-4965-a1aa-0699b546ef70?api-version=2016-03-30 @@ -1052,10 +1052,10 @@ interactions: --service-principal --client-secret --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1130,12 +1130,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1212,12 +1212,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1266,12 +1266,12 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1333,12 +1333,12 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1392,7 +1392,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4f9911c-0477-4ad4-86eb-eec47b8ab7b2?api-version=2016-03-30 @@ -1441,7 +1441,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4f9911c-0477-4ad4-86eb-eec47b8ab7b2?api-version=2016-03-30 @@ -1490,7 +1490,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4f9911c-0477-4ad4-86eb-eec47b8ab7b2?api-version=2016-03-30 @@ -1539,7 +1539,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4f9911c-0477-4ad4-86eb-eec47b8ab7b2?api-version=2016-03-30 @@ -1588,7 +1588,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4f9911c-0477-4ad4-86eb-eec47b8ab7b2?api-version=2016-03-30 @@ -1638,10 +1638,10 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1697,12 +1697,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml index eb2a8b126e5..64639205abe 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml @@ -74,12 +74,12 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -155,7 +155,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -205,7 +205,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -255,7 +255,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -305,7 +305,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -355,7 +355,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -405,7 +405,7 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21bca6dd-ddbf-40c3-9bc6-0cd1aaebe6e9?api-version=2016-03-30 @@ -456,10 +456,10 @@ interactions: --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -542,12 +542,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -632,12 +632,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -686,12 +686,12 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -753,12 +753,12 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -812,7 +812,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eefefad-c8ef-48c4-8c0c-2d855a87a4ea?api-version=2016-03-30 @@ -861,7 +861,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eefefad-c8ef-48c4-8c0c-2d855a87a4ea?api-version=2016-03-30 @@ -910,7 +910,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eefefad-c8ef-48c4-8c0c-2d855a87a4ea?api-version=2016-03-30 @@ -959,7 +959,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eefefad-c8ef-48c4-8c0c-2d855a87a4ea?api-version=2016-03-30 @@ -1008,7 +1008,7 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6eefefad-c8ef-48c4-8c0c-2d855a87a4ea?api-version=2016-03-30 @@ -1058,10 +1058,10 @@ interactions: - --resource-group --cluster-name --name --node-count --zones User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1117,12 +1117,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml index 75991e1aee6..3a85147f5e8 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml @@ -1730,12 +1730,12 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1814,7 +1814,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -1864,7 +1864,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -1914,7 +1914,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -1964,7 +1964,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -2014,7 +2014,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -2064,7 +2064,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -2114,7 +2114,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -2164,7 +2164,7 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/293b5490-e091-45e6-8518-f25fc6cc48a2?api-version=2016-03-30 @@ -2215,10 +2215,10 @@ interactions: --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml index 27fd6a5a82c..05d6ae49776 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml @@ -652,12 +652,12 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -736,7 +736,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -786,7 +786,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -836,7 +836,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -886,7 +886,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -936,7 +936,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -986,7 +986,7 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebee2334-62b8-4cb9-b65a-d9f323675c60?api-version=2016-03-30 @@ -1037,10 +1037,10 @@ interactions: -a --appgw-name --appgw-subnet-id --yes -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml index c22ad626739..12d8467a732 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml @@ -673,11 +673,11 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -750,7 +750,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -799,7 +799,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -848,7 +848,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -897,7 +897,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -946,7 +946,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -995,7 +995,7 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a8db83a7-3ba9-439d-8d26-66621f6eaf26?api-version=2017-08-31 response: @@ -1045,9 +1045,9 @@ interactions: --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1125,11 +1125,11 @@ interactions: - -g User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1211,11 +1211,11 @@ interactions: - -g -o User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1297,11 +1297,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1381,11 +1381,11 @@ interactions: - -g -n --file User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1436,11 +1436,11 @@ interactions: - -g -n -f User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1491,11 +1491,11 @@ interactions: - -g -n -f User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1544,11 +1544,11 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1647,11 +1647,11 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1733,7 +1733,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -1781,7 +1781,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -1829,7 +1829,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -1877,7 +1877,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -1925,7 +1925,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -1973,7 +1973,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/76f50e68-a732-4d6a-a202-410c8819fd17?api-version=2017-08-31 response: @@ -2022,9 +2022,9 @@ interactions: - -g -n --node-count User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2102,11 +2102,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2186,11 +2186,11 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml index 1a7572340ba..49e5861fbc6 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml @@ -77,12 +77,12 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -160,7 +160,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -210,7 +210,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -260,7 +260,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -310,7 +310,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -360,7 +360,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -410,7 +410,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -460,7 +460,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/319c195f-a11a-4da4-bd75-ab142a8e181c?api-version=2017-08-31 @@ -511,10 +511,10 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -599,12 +599,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -711,12 +711,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -802,7 +802,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d2139778-506b-4c1e-a67c-f579d4d725dc?api-version=2017-08-31 @@ -852,7 +852,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d2139778-506b-4c1e-a67c-f579d4d725dc?api-version=2017-08-31 @@ -902,7 +902,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d2139778-506b-4c1e-a67c-f579d4d725dc?api-version=2017-08-31 @@ -953,10 +953,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml index 2f7f43b16c2..8cb17d908fb 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml @@ -77,12 +77,12 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -160,7 +160,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -210,7 +210,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -260,7 +260,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -310,7 +310,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -360,7 +360,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -410,7 +410,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -460,7 +460,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -510,7 +510,7 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/d8e72755-8338-467a-b5e6-48cfeaae73e3?api-version=2017-08-31 @@ -561,10 +561,10 @@ interactions: --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -649,12 +649,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -761,12 +761,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -852,7 +852,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/1d2634f7-c199-4467-ad53-1006904f4d5c?api-version=2017-08-31 @@ -902,7 +902,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/1d2634f7-c199-4467-ad53-1006904f4d5c?api-version=2017-08-31 @@ -952,7 +952,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/1d2634f7-c199-4467-ad53-1006904f4d5c?api-version=2017-08-31 @@ -1003,10 +1003,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml index b12fa65a167..0e1e25712ea 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -471,12 +471,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -537,12 +537,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -603,12 +603,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -677,12 +677,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -751,12 +751,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -825,12 +825,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -899,12 +899,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -973,12 +973,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1047,12 +1047,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1121,12 +1121,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1195,12 +1195,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1269,12 +1269,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1345,12 +1345,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1421,12 +1421,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1497,12 +1497,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1553,12 +1553,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml index 04c3915dfb8..55ba4aa0b37 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml @@ -74,12 +74,12 @@ interactions: --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -150,12 +150,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -226,12 +226,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -308,12 +308,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -390,12 +390,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -472,12 +472,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -554,12 +554,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -636,12 +636,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -718,12 +718,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -803,12 +803,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -888,12 +888,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -972,12 +972,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1028,12 +1028,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update.yaml index 2a8209801a1..d9c8b819a5a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update.yaml @@ -78,12 +78,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -146,12 +146,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -214,12 +214,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -282,12 +282,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -350,12 +350,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -418,12 +418,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -486,12 +486,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -554,12 +554,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -622,12 +622,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -690,12 +690,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -758,12 +758,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -826,12 +826,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -894,12 +894,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -962,12 +962,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -1030,12 +1030,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -1098,12 +1098,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1176,12 +1176,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1254,12 +1254,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1333,12 +1333,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1412,12 +1412,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1491,12 +1491,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1570,12 +1570,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1649,12 +1649,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1728,12 +1728,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1809,12 +1809,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1890,12 +1890,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1971,12 +1971,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -2025,12 +2025,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2123,12 +2123,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2205,7 +2205,7 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5a63164-e066-4ffa-acb7-bd6b66c24381?api-version=2016-03-30 @@ -2254,7 +2254,7 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5a63164-e066-4ffa-acb7-bd6b66c24381?api-version=2016-03-30 @@ -2303,7 +2303,7 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5a63164-e066-4ffa-acb7-bd6b66c24381?api-version=2016-03-30 @@ -2353,10 +2353,10 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2429,12 +2429,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2525,12 +2525,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2607,7 +2607,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2656,7 +2656,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2705,7 +2705,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2754,7 +2754,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2803,7 +2803,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2852,7 +2852,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7a02531-43e2-4034-9df3-32d00dc38733?api-version=2016-03-30 @@ -2902,10 +2902,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2978,12 +2978,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3058,12 +3058,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update_msi.yaml index a810b2801a2..868d209e181 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_cluster_with_apiserver_authorized_ranges_then_update_msi.yaml @@ -75,12 +75,12 @@ interactions: --load-balancer-sku --vm-set-type --api-server-authorized-ip-ranges --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -155,12 +155,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -235,12 +235,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -318,12 +318,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -405,12 +405,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -492,12 +492,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -579,12 +579,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -666,12 +666,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -753,12 +753,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -843,12 +843,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -933,12 +933,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1022,12 +1022,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1076,12 +1076,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1184,12 +1184,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1271,7 +1271,7 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5db952a4-54da-4800-9391-d4afb9166a75?api-version=2016-03-30 @@ -1320,7 +1320,7 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5db952a4-54da-4800-9391-d4afb9166a75?api-version=2016-03-30 @@ -1370,10 +1370,10 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1454,12 +1454,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1560,12 +1560,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1647,7 +1647,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1696,7 +1696,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1745,7 +1745,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1794,7 +1794,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1843,7 +1843,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1892,7 +1892,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/995fde51-6dde-4c3f-87a3-695a8c9fb250?api-version=2016-03-30 @@ -1942,10 +1942,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2026,12 +2026,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2114,12 +2114,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml index ca35ef09589..74f9b136f20 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml @@ -76,12 +76,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -143,12 +143,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -210,12 +210,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -277,12 +277,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -344,12 +344,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -411,12 +411,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -478,12 +478,12 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -557,7 +557,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -607,7 +607,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -657,7 +657,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -707,7 +707,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -757,7 +757,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -807,7 +807,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -857,7 +857,7 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35dcf8c3-7f2b-45c3-91e8-87de07da6f00?api-version=2016-03-30 @@ -908,10 +908,10 @@ interactions: --service-principal --client-secret --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -985,12 +985,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1067,12 +1067,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1149,12 +1149,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1230,12 +1230,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1286,12 +1286,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1340,12 +1340,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1437,12 +1437,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1520,7 +1520,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1569,7 +1569,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1618,7 +1618,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1667,7 +1667,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1716,7 +1716,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1765,7 +1765,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1814,7 +1814,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1863,7 +1863,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1912,7 +1912,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91c1a116-6fec-4b1b-89c9-ac728af34f65?api-version=2016-03-30 @@ -1962,10 +1962,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2039,12 +2039,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2120,12 +2120,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml index a2a94fb64cc..80da25de38c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml @@ -75,12 +75,12 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -155,7 +155,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -205,7 +205,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -255,7 +255,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -305,7 +305,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -355,7 +355,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -405,7 +405,7 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2169790a-fc4a-4a2b-bd33-4b4da36429b8?api-version=2016-03-30 @@ -456,10 +456,10 @@ interactions: --tags --nodepool-labels User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -541,12 +541,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -631,12 +631,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -721,12 +721,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -810,12 +810,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -866,12 +866,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -920,12 +920,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1027,12 +1027,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1115,7 +1115,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c200e040-587b-43c4-b8af-9e9df9a80904?api-version=2016-03-30 @@ -1164,7 +1164,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c200e040-587b-43c4-b8af-9e9df9a80904?api-version=2016-03-30 @@ -1213,7 +1213,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c200e040-587b-43c4-b8af-9e9df9a80904?api-version=2016-03-30 @@ -1262,7 +1262,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c200e040-587b-43c4-b8af-9e9df9a80904?api-version=2016-03-30 @@ -1311,7 +1311,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c200e040-587b-43c4-b8af-9e9df9a80904?api-version=2016-03-30 @@ -1361,10 +1361,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1446,12 +1446,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1535,12 +1535,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon.yaml index e20aacfbde5..20250280f03 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon.yaml @@ -371,12 +371,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -439,12 +439,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -507,12 +507,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -575,12 +575,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -643,12 +643,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -711,12 +711,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -867,12 +867,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -935,12 +935,12 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1015,7 +1015,7 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36a569b4-b6bf-41fb-a4c5-e8d3a5ed2a8a?api-version=2016-03-30 @@ -1065,7 +1065,7 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36a569b4-b6bf-41fb-a4c5-e8d3a5ed2a8a?api-version=2016-03-30 @@ -1115,7 +1115,7 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36a569b4-b6bf-41fb-a4c5-e8d3a5ed2a8a?api-version=2016-03-30 @@ -1165,7 +1165,7 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36a569b4-b6bf-41fb-a4c5-e8d3a5ed2a8a?api-version=2016-03-30 @@ -1215,7 +1215,7 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36a569b4-b6bf-41fb-a4c5-e8d3a5ed2a8a?api-version=2016-03-30 @@ -1266,10 +1266,10 @@ interactions: --service-principal --client-secret --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1516,12 +1516,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1596,12 +1596,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1694,12 +1694,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1777,7 +1777,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1aa4ff-3b80-400a-82af-de16c3885861?api-version=2016-03-30 @@ -1826,7 +1826,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1aa4ff-3b80-400a-82af-de16c3885861?api-version=2016-03-30 @@ -1875,7 +1875,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1aa4ff-3b80-400a-82af-de16c3885861?api-version=2016-03-30 @@ -1925,10 +1925,10 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -2002,12 +2002,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -2081,12 +2081,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -2469,12 +2469,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -2639,7 +2639,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ba86c7c-3828-49d1-b0e6-68a91d03ce6f?api-version=2016-03-30 @@ -2688,7 +2688,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ba86c7c-3828-49d1-b0e6-68a91d03ce6f?api-version=2016-03-30 @@ -2737,7 +2737,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ba86c7c-3828-49d1-b0e6-68a91d03ce6f?api-version=2016-03-30 @@ -2787,10 +2787,10 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -3035,12 +3035,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -3117,12 +3117,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon_msi.yaml index 2a53190469d..b1430732694 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_monitoring_addon_msi.yaml @@ -370,12 +370,12 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -540,7 +540,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -590,7 +590,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -640,7 +640,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -690,7 +690,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -740,7 +740,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -790,7 +790,7 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f4f1cb9-d630-41b2-9f67-8cf0a9400909?api-version=2016-03-30 @@ -841,10 +841,10 @@ interactions: --enable-addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1036,12 +1036,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1127,12 +1127,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1238,12 +1238,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1326,7 +1326,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8f7cbe-c8bc-4ff1-b7eb-210d29f4850f?api-version=2016-03-30 @@ -1375,7 +1375,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8f7cbe-c8bc-4ff1-b7eb-210d29f4850f?api-version=2016-03-30 @@ -1424,7 +1424,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8f7cbe-c8bc-4ff1-b7eb-210d29f4850f?api-version=2016-03-30 @@ -1474,10 +1474,10 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1559,12 +1559,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1646,12 +1646,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2044,12 +2044,12 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2219,7 +2219,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e048fe6d-a739-46c8-8801-d0662c109db1?api-version=2016-03-30 @@ -2268,7 +2268,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e048fe6d-a739-46c8-8801-d0662c109db1?api-version=2016-03-30 @@ -2317,7 +2317,7 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e048fe6d-a739-46c8-8801-d0662c109db1?api-version=2016-03-30 @@ -2367,10 +2367,10 @@ interactions: - -a -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2560,12 +2560,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2653,12 +2653,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml index 157f32095c2..f2405c1dbae 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml @@ -313,12 +313,12 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -378,12 +378,12 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -443,12 +443,12 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -508,12 +508,12 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -573,12 +573,12 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -649,7 +649,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -699,7 +699,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -749,7 +749,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -799,7 +799,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -849,7 +849,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -899,7 +899,7 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01c79530-080d-400f-bf07-487b71b828ed?api-version=2016-03-30 @@ -950,10 +950,10 @@ interactions: --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml index 9fe91d2a53d..58b15304ea5 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml @@ -362,12 +362,12 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -439,7 +439,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -489,7 +489,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -539,7 +539,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -589,7 +589,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -639,7 +639,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -689,7 +689,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -739,7 +739,7 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20261a26-11f4-4af5-b599-09a88ffe1bfc?api-version=2016-03-30 @@ -790,10 +790,10 @@ interactions: --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_SP_and_with_role_assignment.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_SP_and_with_role_assignment.yaml index 7efe181dacf..ede02e2c194 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_SP_and_with_role_assignment.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_SP_and_with_role_assignment.yaml @@ -362,12 +362,12 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -439,7 +439,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -489,7 +489,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -539,7 +539,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -589,7 +589,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -639,7 +639,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -689,7 +689,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fe6d27f-61c1-47fc-b7d7-2bced61e209d?api-version=2016-03-30 @@ -740,10 +740,10 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml index 00cdbed8254..8e8d1d1f075 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml @@ -708,12 +708,12 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -784,7 +784,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7079a1c2-cf11-49b1-9ba5-4ff43a695843?api-version=2016-03-30 @@ -834,7 +834,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7079a1c2-cf11-49b1-9ba5-4ff43a695843?api-version=2016-03-30 @@ -884,7 +884,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7079a1c2-cf11-49b1-9ba5-4ff43a695843?api-version=2016-03-30 @@ -934,7 +934,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7079a1c2-cf11-49b1-9ba5-4ff43a695843?api-version=2016-03-30 @@ -984,7 +984,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7079a1c2-cf11-49b1-9ba5-4ff43a695843?api-version=2016-03-30 @@ -1035,10 +1035,10 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -4208,12 +4208,12 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\"\ @@ -4284,7 +4284,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4334,7 +4334,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4384,7 +4384,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4434,7 +4434,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4484,7 +4484,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4534,7 +4534,7 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1280bf8-38be-4574-8d91-d30f02c62669?api-version=2016-03-30 @@ -4585,10 +4585,10 @@ interactions: --vnet-subnet-id --no-ssh-key User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment_msi.yaml index a192d3d367d..3facef71b5a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment_msi.yaml @@ -412,12 +412,12 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -489,7 +489,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -539,7 +539,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -589,7 +589,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -639,7 +639,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -689,7 +689,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -739,7 +739,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -789,7 +789,7 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0cf1c25-345b-4ea1-b234-b6e4dd647d7c?api-version=2016-03-30 @@ -840,10 +840,10 @@ interactions: --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml index a6ddb33c30b..02268442f17 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -471,12 +471,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -537,12 +537,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -603,12 +603,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -669,12 +669,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -735,12 +735,12 @@ interactions: --service-principal --client-secret --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -812,12 +812,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -889,12 +889,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -967,12 +967,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1045,12 +1045,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1123,12 +1123,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1201,12 +1201,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1279,12 +1279,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1357,12 +1357,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1435,12 +1435,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1513,12 +1513,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1593,12 +1593,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1673,12 +1673,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1753,12 +1753,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1809,12 +1809,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1865,12 +1865,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1921,12 +1921,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml index fa1cbc667c7..46864fa4204 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml @@ -74,12 +74,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -152,12 +152,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -230,12 +230,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -311,12 +311,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -397,12 +397,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -483,12 +483,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -569,12 +569,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -655,12 +655,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -741,12 +741,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -829,12 +829,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -917,12 +917,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1005,12 +1005,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1061,12 +1061,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1117,12 +1117,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1173,12 +1173,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml index 7dc6d3461af..d03d2260125 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -151,7 +151,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -200,7 +200,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -249,7 +249,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -298,7 +298,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -347,7 +347,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -396,7 +396,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -445,7 +445,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -494,7 +494,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/a6f8f9d9-635a-4c2a-b47b-32278a72d759?api-version=2017-08-31 @@ -544,10 +544,10 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -629,12 +629,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -738,12 +738,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -829,7 +829,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/9d91143c-88e7-4803-b74a-7b562afc8a62?api-version=2017-08-31 @@ -879,7 +879,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/9d91143c-88e7-4803-b74a-7b562afc8a62?api-version=2017-08-31 @@ -929,7 +929,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/9d91143c-88e7-4803-b74a-7b562afc8a62?api-version=2017-08-31 @@ -979,7 +979,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/9d91143c-88e7-4803-b74a-7b562afc8a62?api-version=2017-08-31 @@ -1030,10 +1030,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml index f6e86aeccac..b23fad839b0 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -151,7 +151,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -200,7 +200,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -249,7 +249,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -298,7 +298,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -347,7 +347,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -396,7 +396,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/bd0ad063-a361-4c36-8537-1e74f6b8691b?api-version=2017-08-31 @@ -446,10 +446,10 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -531,12 +531,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -640,12 +640,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -731,7 +731,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/facaa0e4-6ba5-4925-ae4c-82e019968325?api-version=2017-08-31 @@ -781,7 +781,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/facaa0e4-6ba5-4925-ae4c-82e019968325?api-version=2017-08-31 @@ -831,7 +831,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/facaa0e4-6ba5-4925-ae4c-82e019968325?api-version=2017-08-31 @@ -882,10 +882,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update.yaml index 5dc5f8b7362..697cda3092c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update.yaml @@ -79,12 +79,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -148,12 +148,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -217,12 +217,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -286,12 +286,12 @@ interactions: --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -368,12 +368,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -450,12 +450,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -532,12 +532,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -614,12 +614,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -698,12 +698,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -782,12 +782,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -866,12 +866,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -950,12 +950,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1034,12 +1034,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1118,12 +1118,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1202,12 +1202,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1286,12 +1286,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1370,12 +1370,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1455,12 +1455,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1540,12 +1540,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1626,12 +1626,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1680,12 +1680,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1764,12 +1764,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1867,12 +1867,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1954,7 +1954,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2003,7 +2003,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2052,7 +2052,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2101,7 +2101,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2150,7 +2150,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2199,7 +2199,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecc07de3-e7ba-4f60-88b8-dc8bcc798549?api-version=2016-03-30 @@ -2249,10 +2249,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2331,12 +2331,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2417,12 +2417,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update_msi.yaml index 48b06e03737..6b735de92a6 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_private_cluster_then_update_msi.yaml @@ -75,12 +75,12 @@ interactions: --load-balancer-sku --vm-set-type --enable-private-cluster --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -158,12 +158,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -241,12 +241,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -327,12 +327,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -413,12 +413,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -499,12 +499,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -591,12 +591,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -683,12 +683,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -775,12 +775,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -867,12 +867,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -959,12 +959,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1051,12 +1051,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1143,12 +1143,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1235,12 +1235,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1327,12 +1327,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1419,12 +1419,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1511,12 +1511,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1604,12 +1604,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1697,12 +1697,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1791,12 +1791,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1845,12 +1845,12 @@ interactions: - -g -n --api-server-authorized-ip-ranges User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1937,12 +1937,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2050,12 +2050,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2142,7 +2142,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2191,7 +2191,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2240,7 +2240,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2289,7 +2289,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2338,7 +2338,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2387,7 +2387,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2436,7 +2436,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2485,7 +2485,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81740b8b-756b-43fa-ba32-c79c1fd8f242?api-version=2016-03-30 @@ -2535,10 +2535,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2625,12 +2625,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2719,12 +2719,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml index 10bce578c35..24374711bc8 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml @@ -14,7 +14,7 @@ interactions: - -l --query User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -166,12 +166,12 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -232,12 +232,12 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -298,12 +298,12 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -364,12 +364,12 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -430,12 +430,12 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -508,7 +508,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -558,7 +558,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -608,7 +608,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -658,7 +658,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -708,7 +708,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -758,7 +758,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -808,7 +808,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -858,7 +858,7 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/ca76c7ac-ce1f-4e1a-8fa6-ddc4ea768df8?api-version=2017-08-31 @@ -909,10 +909,10 @@ interactions: --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -985,12 +985,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1066,12 +1066,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1144,12 +1144,12 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1240,12 +1240,12 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1322,7 +1322,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1371,7 +1371,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1420,7 +1420,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1469,7 +1469,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1518,7 +1518,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1567,7 +1567,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/7447f5d0-5d78-4202-9ce8-c564e418d5d7?api-version=2017-08-31 @@ -1617,10 +1617,10 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1693,12 +1693,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1773,12 +1773,12 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: '' @@ -1823,7 +1823,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -1872,7 +1872,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -1921,7 +1921,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -1970,7 +1970,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2019,7 +2019,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2068,7 +2068,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2117,7 +2117,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2166,7 +2166,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2215,7 +2215,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2264,7 +2264,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2313,7 +2313,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2362,7 +2362,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2411,7 +2411,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2460,7 +2460,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2509,7 +2509,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2558,7 +2558,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2607,7 +2607,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2656,7 +2656,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2705,7 +2705,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2754,7 +2754,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2803,7 +2803,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2852,7 +2852,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/227f8035-f985-450c-951e-4da7ef8adb77?api-version=2017-08-31 @@ -2902,12 +2902,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2020-11-01 response: body: string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml index 60489222757..5bf0f99ed1b 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml @@ -14,7 +14,7 @@ interactions: - -l --query User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -163,12 +163,12 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -242,7 +242,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -291,7 +291,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -340,7 +340,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -389,7 +389,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -438,7 +438,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -487,7 +487,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -536,7 +536,7 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/54bdd58c-80a1-42e4-848e-03ebe2336fb5?api-version=2017-08-31 @@ -586,10 +586,10 @@ interactions: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -667,12 +667,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -753,12 +753,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -836,12 +836,12 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -939,12 +939,12 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1026,7 +1026,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1075,7 +1075,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1124,7 +1124,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1173,7 +1173,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1222,7 +1222,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1271,7 +1271,7 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/0a034a80-c6c5-4271-ade6-775eb50fb12e?api-version=2017-08-31 @@ -1321,10 +1321,10 @@ interactions: - -g -n --nodepool-name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1402,12 +1402,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1487,12 +1487,12 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: '' @@ -1537,7 +1537,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1586,7 +1586,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1635,7 +1635,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1684,7 +1684,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1733,7 +1733,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1782,7 +1782,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1831,7 +1831,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1880,7 +1880,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1929,7 +1929,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -1978,7 +1978,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2027,7 +2027,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2076,7 +2076,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2125,7 +2125,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2174,7 +2174,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2223,7 +2223,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2272,7 +2272,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2321,7 +2321,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2370,7 +2370,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2419,7 +2419,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2468,7 +2468,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2517,7 +2517,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/f7052f9d-7964-4f4f-82f1-adf7eb8e041e?api-version=2017-08-31 @@ -2567,12 +2567,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml index 75afbf5f3e7..e97d5858db9 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml @@ -14,7 +14,7 @@ interactions: - -l --query User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -166,12 +166,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -232,12 +232,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -298,12 +298,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -364,12 +364,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -430,12 +430,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -496,12 +496,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -562,12 +562,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -628,12 +628,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -694,12 +694,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -760,12 +760,12 @@ interactions: --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -837,12 +837,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -914,12 +914,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -992,12 +992,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1070,12 +1070,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1148,12 +1148,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1226,12 +1226,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1304,12 +1304,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1382,7 +1382,7 @@ interactions: - -l User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -1473,7 +1473,7 @@ interactions: - -l -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -1564,12 +1564,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ @@ -1620,12 +1620,12 @@ interactions: - -g -n --output User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ @@ -1676,12 +1676,12 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1772,12 +1772,12 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1856,7 +1856,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d64bb148-2da3-40e3-a29e-914a7f588ee0?api-version=2016-03-30 @@ -1905,7 +1905,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d64bb148-2da3-40e3-a29e-914a7f588ee0?api-version=2016-03-30 @@ -1954,7 +1954,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d64bb148-2da3-40e3-a29e-914a7f588ee0?api-version=2016-03-30 @@ -2004,10 +2004,10 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2084,12 +2084,12 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' @@ -2134,7 +2134,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2183,7 +2183,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2232,7 +2232,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2281,7 +2281,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2330,7 +2330,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2379,7 +2379,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2428,7 +2428,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2477,7 +2477,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2526,7 +2526,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2575,7 +2575,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2624,7 +2624,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2673,7 +2673,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2722,7 +2722,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2771,7 +2771,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2820,7 +2820,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f9ae5de-6af9-47cc-b775-21048e8fc1b7?api-version=2016-03-30 @@ -2870,12 +2870,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml index e9f84acd48d..fd24df9e37c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml @@ -14,7 +14,7 @@ interactions: - -l --query User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -163,12 +163,12 @@ interactions: - -g -n -p --ssh-key-value -l -k --node-vm-size --tags -c --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -242,12 +242,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -321,12 +321,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -403,12 +403,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -486,12 +486,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -569,12 +569,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -652,12 +652,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -735,12 +735,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -818,12 +818,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -901,7 +901,7 @@ interactions: - -l User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -992,7 +992,7 @@ interactions: - -l -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US @@ -1083,12 +1083,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ @@ -1139,12 +1139,12 @@ interactions: - -g -n --output User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ @@ -1195,12 +1195,12 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1298,12 +1298,12 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1387,7 +1387,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cff6278-2552-409d-8b98-e73f73d91be4?api-version=2016-03-30 @@ -1436,7 +1436,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cff6278-2552-409d-8b98-e73f73d91be4?api-version=2016-03-30 @@ -1485,7 +1485,7 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cff6278-2552-409d-8b98-e73f73d91be4?api-version=2016-03-30 @@ -1535,10 +1535,10 @@ interactions: - -g -n --addons User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1623,12 +1623,12 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' @@ -1673,7 +1673,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1722,7 +1722,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1771,7 +1771,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1820,7 +1820,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1869,7 +1869,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1918,7 +1918,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -1967,7 +1967,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2016,7 +2016,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2065,7 +2065,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2114,7 +2114,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2163,7 +2163,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2212,7 +2212,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2261,7 +2261,7 @@ interactions: - -g -n --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec281c23-d1c9-4c70-8707-637da70cde40?api-version=2016-03-30 @@ -2311,12 +2311,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml index 63af02b8a60..7c2df442446 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -482,12 +482,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -559,12 +559,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -636,12 +636,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -713,12 +713,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -790,12 +790,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -867,12 +867,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -944,12 +944,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1021,12 +1021,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1098,12 +1098,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1175,12 +1175,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1253,12 +1253,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1331,12 +1331,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1409,12 +1409,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1487,12 +1487,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1565,12 +1565,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1645,12 +1645,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1725,12 +1725,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1805,12 +1805,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1859,12 +1859,12 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1955,12 +1955,12 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2037,7 +2037,7 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4cfb6a70-7006-461a-b5cf-be684accc577?api-version=2016-03-30 @@ -2086,7 +2086,7 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4cfb6a70-7006-461a-b5cf-be684accc577?api-version=2016-03-30 @@ -2136,10 +2136,10 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2213,12 +2213,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2292,12 +2292,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2390,12 +2390,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2473,7 +2473,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2522,7 +2522,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2571,7 +2571,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2620,7 +2620,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2669,7 +2669,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2718,7 +2718,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2767,7 +2767,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2816,7 +2816,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea1cc9bd-af52-4dca-bb05-5e4378e6dc7d?api-version=2016-03-30 @@ -2866,10 +2866,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2943,12 +2943,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3024,12 +3024,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml index 45a6ab3461c..cc0dbbd9de4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml @@ -74,12 +74,12 @@ interactions: --load-balancer-sku --vm-set-type --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -152,12 +152,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -230,12 +230,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -311,12 +311,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -397,12 +397,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -483,12 +483,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -569,12 +569,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -655,12 +655,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -741,12 +741,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -827,12 +827,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -915,12 +915,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1001,12 +1001,12 @@ interactions: - -g -n --created User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1087,12 +1087,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1175,12 +1175,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1263,12 +1263,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1351,12 +1351,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1403,12 +1403,12 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1509,12 +1509,12 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1594,7 +1594,7 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1643,7 +1643,7 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1693,10 +1693,10 @@ interactions: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1778,12 +1778,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1865,12 +1865,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1973,12 +1973,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2059,7 +2059,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2110,7 +2110,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2159,7 +2159,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2208,7 +2208,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2257,7 +2257,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2306,7 +2306,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2356,10 +2356,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2443,12 +2443,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2532,12 +2532,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml index 3ade91c3006..848ec87cd7e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml @@ -417,11 +417,11 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -494,7 +494,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -543,7 +543,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -592,7 +592,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -641,7 +641,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -690,7 +690,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -739,7 +739,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85588e4-94c0-4a6a-9de9-225751843394?api-version=2016-03-30 response: @@ -789,9 +789,9 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -865,11 +865,11 @@ interactions: - -g User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -945,11 +945,11 @@ interactions: - -g -o User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1025,11 +1025,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1105,11 +1105,11 @@ interactions: - -g -n --file User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1158,11 +1158,11 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1257,11 +1257,11 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1340,7 +1340,7 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca15352-0930-46f4-b47f-bc90b1894681?api-version=2016-03-30 response: @@ -1388,7 +1388,7 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca15352-0930-46f4-b47f-bc90b1894681?api-version=2016-03-30 response: @@ -1437,9 +1437,9 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1515,11 +1515,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1597,11 +1597,11 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml index e39055acf92..c8c62f8ac93 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml @@ -417,11 +417,11 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -495,7 +495,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -544,7 +544,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -593,7 +593,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -642,7 +642,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -691,7 +691,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -740,7 +740,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7815451f-fbd2-4d53-bbb9-810876fa97d0?api-version=2016-03-30 response: @@ -790,9 +790,9 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -870,11 +870,11 @@ interactions: - -g User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -956,11 +956,11 @@ interactions: - -g -o User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1042,11 +1042,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1126,11 +1126,11 @@ interactions: - -g -n --file User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1179,11 +1179,11 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1284,11 +1284,11 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1371,7 +1371,7 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e88b52d8-844e-4e90-9cfe-59aa33a9780e?api-version=2016-03-30 response: @@ -1419,7 +1419,7 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e88b52d8-844e-4e90-9cfe-59aa33a9780e?api-version=2016-03-30 response: @@ -1468,9 +1468,9 @@ interactions: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1550,11 +1550,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1636,11 +1636,11 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml index a0f5e14bab7..4c99723887d 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml @@ -417,11 +417,11 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -494,7 +494,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -543,7 +543,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -592,7 +592,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -641,7 +641,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -690,7 +690,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -739,7 +739,7 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d46484e4-dde3-47d3-a9ec-05a4154a2a56?api-version=2016-03-30 response: @@ -789,9 +789,9 @@ interactions: --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -865,11 +865,11 @@ interactions: - -g User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -945,11 +945,11 @@ interactions: - -g -o User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1025,11 +1025,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1105,11 +1105,11 @@ interactions: - -g -n --file User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1158,11 +1158,11 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1257,11 +1257,11 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1340,7 +1340,7 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f898e164-57d0-44b8-8866-3b5d974327ad?api-version=2016-03-30 response: @@ -1388,7 +1388,7 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f898e164-57d0-44b8-8866-3b5d974327ad?api-version=2016-03-30 response: @@ -1437,9 +1437,9 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1515,11 +1515,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1597,11 +1597,11 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml index e199785df46..b8c4a555032 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml @@ -417,11 +417,11 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -495,7 +495,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -544,7 +544,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -593,7 +593,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -642,7 +642,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -691,7 +691,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -740,7 +740,7 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd6fa353-39e3-454d-9de7-fd017affea79?api-version=2016-03-30 response: @@ -790,9 +790,9 @@ interactions: --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -870,11 +870,11 @@ interactions: - -g User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -956,11 +956,11 @@ interactions: - -g -o User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1042,11 +1042,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1126,11 +1126,11 @@ interactions: - -g -n --file User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -1179,11 +1179,11 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1283,11 +1283,11 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1370,7 +1370,7 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ded9da64-6b1a-4e31-b5fb-79741501bc77?api-version=2016-03-30 response: @@ -1418,7 +1418,7 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ded9da64-6b1a-4e31-b5fb-79741501bc77?api-version=2016-03-30 response: @@ -1467,9 +1467,9 @@ interactions: - -g -n --load-balancer-outbound-ips User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1549,11 +1549,11 @@ interactions: - -g -n User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1635,11 +1635,11 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml index 166a201d44f..041abc98865 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -150,7 +150,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -199,7 +199,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -248,7 +248,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -297,7 +297,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -346,7 +346,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -395,7 +395,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d875aa8c-bc28-4306-9346-6636d23bddd5?api-version=2016-03-30 @@ -445,10 +445,10 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -529,12 +529,12 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -595,12 +595,12 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ @@ -656,7 +656,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c20f6db-56ff-4b05-bede-285cb00014cd?api-version=2016-03-30 @@ -705,7 +705,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c20f6db-56ff-4b05-bede-285cb00014cd?api-version=2016-03-30 @@ -754,7 +754,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c20f6db-56ff-4b05-bede-285cb00014cd?api-version=2016-03-30 @@ -803,7 +803,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c20f6db-56ff-4b05-bede-285cb00014cd?api-version=2016-03-30 @@ -852,7 +852,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c20f6db-56ff-4b05-bede-285cb00014cd?api-version=2016-03-30 @@ -902,10 +902,10 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml index cc422339e01..ed72ac7bed8 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -150,7 +150,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -199,7 +199,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -248,7 +248,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -297,7 +297,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -346,7 +346,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -395,7 +395,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f35ed226-1a09-449a-8035-2f8b2b131ef7?api-version=2016-03-30 @@ -445,10 +445,10 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -529,12 +529,12 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -595,12 +595,12 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ @@ -656,7 +656,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fca0ffb2-c953-4a5e-8b67-265201fe8c58?api-version=2016-03-30 @@ -705,7 +705,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fca0ffb2-c953-4a5e-8b67-265201fe8c58?api-version=2016-03-30 @@ -754,7 +754,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fca0ffb2-c953-4a5e-8b67-265201fe8c58?api-version=2016-03-30 @@ -803,7 +803,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fca0ffb2-c953-4a5e-8b67-265201fe8c58?api-version=2016-03-30 @@ -852,7 +852,7 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fca0ffb2-c953-4a5e-8b67-265201fe8c58?api-version=2016-03-30 @@ -902,10 +902,10 @@ interactions: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml index 9c6aae19af8..3f0f748a2e5 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml @@ -77,12 +77,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -144,12 +144,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -211,12 +211,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -278,12 +278,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -345,12 +345,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -412,12 +412,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -479,12 +479,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -546,12 +546,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -613,12 +613,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -680,12 +680,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -747,12 +747,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -814,12 +814,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -881,12 +881,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -948,12 +948,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -1015,12 +1015,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -1082,12 +1082,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -1149,12 +1149,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1229,7 +1229,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1280,7 +1280,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1331,7 +1331,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1382,7 +1382,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1433,7 +1433,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1484,7 +1484,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c1713e-964f-4b68-8fe0-9811ab078aeb?api-version=2016-03-30 @@ -1536,10 +1536,10 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1613,12 +1613,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1679,12 +1679,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -1737,7 +1737,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1786,7 +1786,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1835,7 +1835,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1884,7 +1884,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1933,7 +1933,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -1982,7 +1982,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2031,7 +2031,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2080,7 +2080,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2129,7 +2129,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -2179,10 +2179,10 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -2236,12 +2236,12 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2343,12 +2343,12 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2433,7 +2433,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2482,7 +2482,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2531,7 +2531,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2580,7 +2580,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2629,7 +2629,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2678,7 +2678,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2727,7 +2727,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2776,7 +2776,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2825,7 +2825,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2874,7 +2874,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2923,7 +2923,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -2972,7 +2972,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3021,7 +3021,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3070,7 +3070,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3119,7 +3119,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3168,7 +3168,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3217,7 +3217,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3266,7 +3266,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3315,7 +3315,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3364,7 +3364,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3413,7 +3413,7 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5218c87f-5513-4788-99f5-a614a706110c?api-version=2016-03-30 @@ -3463,10 +3463,10 @@ interactions: - --resource-group --name --disable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3547,12 +3547,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -3617,12 +3617,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: '' @@ -3669,12 +3669,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml index ec527d96912..42a3be452a6 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml @@ -78,7 +78,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -444,7 +444,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml index c9836d076a7..79a15dcb87a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml @@ -80,7 +80,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -502,7 +502,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml index 197721d9b8a..c30c7e7458e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -75,12 +75,12 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -154,7 +154,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -204,7 +204,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -254,7 +254,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -304,7 +304,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -354,7 +354,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -404,7 +404,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -454,7 +454,7 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52fb041-3ea8-4e12-9115-f30162dfc452?api-version=2016-03-30 @@ -505,10 +505,10 @@ interactions: --node-osdisk-size User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml index 45b11e25631..fd4164311d9 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml @@ -75,12 +75,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -157,7 +157,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -207,7 +207,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -257,7 +257,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -307,7 +307,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -357,7 +357,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -407,7 +407,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -457,7 +457,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -507,7 +507,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -557,7 +557,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -607,7 +607,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f0a5fd34-7e45-4d31-bbd1-2cc657d3c43b?api-version=2017-08-31 @@ -658,10 +658,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml index e37a878b9a7..3e291c263b6 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -150,7 +150,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -199,7 +199,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -248,7 +248,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -297,7 +297,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -346,7 +346,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -395,7 +395,7 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9b80163-e6ea-4bab-a944-41bbc08970d0?api-version=2016-03-30 @@ -445,10 +445,10 @@ interactions: - --resource-group --name --generate-ssh-keys --vm-set-type -c --node-osdisk-type User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml index b60c3eff07d..c98b26234ee 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml @@ -76,12 +76,12 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -143,12 +143,12 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -210,12 +210,12 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -288,7 +288,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -338,7 +338,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -388,7 +388,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -438,7 +438,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -488,7 +488,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -538,7 +538,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -588,7 +588,7 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c450e6f-71c9-4e7d-ac63-8598e8dfd752?api-version=2016-03-30 @@ -639,10 +639,10 @@ interactions: --service-principal --client-secret --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -717,12 +717,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml index 6589fe54404..0b91cf08cbd 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml @@ -75,12 +75,12 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -154,7 +154,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -204,7 +204,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -254,7 +254,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -304,7 +304,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -354,7 +354,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -404,7 +404,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -454,7 +454,7 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2bb48f4-5829-4685-bec0-029af103d695?api-version=2016-03-30 @@ -505,10 +505,10 @@ interactions: --uptime-sla User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -591,12 +591,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml index 3433b6d951f..495f902ae78 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml @@ -130,11 +130,11 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service @@ -196,11 +196,11 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -272,7 +272,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -321,7 +321,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -370,7 +370,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -419,7 +419,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -468,7 +468,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -517,7 +517,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -566,7 +566,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -615,7 +615,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -664,7 +664,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -713,7 +713,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -762,7 +762,7 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/231ceea7-f6ea-4315-9976-0b41542620d1?api-version=2016-03-30 response: @@ -812,9 +812,9 @@ interactions: --service-principal --client-secret --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -887,11 +887,11 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -953,11 +953,11 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n @@ -1011,7 +1011,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/145c9318-d30d-4062-bcfd-f31d5b96ef84?api-version=2016-03-30 response: @@ -1059,7 +1059,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/145c9318-d30d-4062-bcfd-f31d5b96ef84?api-version=2016-03-30 response: @@ -1107,7 +1107,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/145c9318-d30d-4062-bcfd-f31d5b96ef84?api-version=2016-03-30 response: @@ -1155,7 +1155,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/145c9318-d30d-4062-bcfd-f31d5b96ef84?api-version=2016-03-30 response: @@ -1204,9 +1204,9 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml index 75527b3e93b..9e8610ef780 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml @@ -129,11 +129,11 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -207,7 +207,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -256,7 +256,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -305,7 +305,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -354,7 +354,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -403,7 +403,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -452,7 +452,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -501,7 +501,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -550,7 +550,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -599,7 +599,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -648,7 +648,7 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6c075b8-7c1e-419b-907f-4d41b2d9a619?api-version=2016-03-30 response: @@ -698,9 +698,9 @@ interactions: --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -778,11 +778,11 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -844,11 +844,11 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n @@ -902,7 +902,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -950,7 +950,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -998,7 +998,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1046,7 +1046,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1094,7 +1094,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1142,7 +1142,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1190,7 +1190,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1238,7 +1238,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1286,7 +1286,7 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ec9f04b-9d27-489a-82a5-eaeb23afbd12?api-version=2016-03-30 response: @@ -1335,9 +1335,9 @@ interactions: - --resource-group --cluster-name -n --ppg User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml index 1622e11172b..eeab39feef4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml @@ -77,12 +77,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -144,12 +144,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -211,12 +211,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -278,12 +278,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -345,12 +345,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -412,12 +412,12 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -491,7 +491,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -542,7 +542,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -593,7 +593,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -644,7 +644,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -695,7 +695,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -746,7 +746,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -797,7 +797,7 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -849,10 +849,10 @@ interactions: --load-balancer-sku --vm-set-type --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -925,12 +925,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -991,12 +991,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -1049,7 +1049,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1098,7 +1098,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1147,7 +1147,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1196,7 +1196,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1245,7 +1245,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1294,7 +1294,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1343,7 +1343,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1392,7 +1392,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1441,7 +1441,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e30b971d-8596-42f1-8992-056a9cd9aaa2?api-version=2016-03-30 @@ -1491,10 +1491,10 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -1548,12 +1548,12 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1655,12 +1655,12 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1745,7 +1745,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -1794,7 +1794,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -1843,7 +1843,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -1892,7 +1892,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -1941,7 +1941,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -1990,7 +1990,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2039,7 +2039,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2088,7 +2088,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2137,7 +2137,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2186,7 +2186,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2235,7 +2235,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2284,7 +2284,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2333,7 +2333,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2382,7 +2382,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2431,7 +2431,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2480,7 +2480,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2529,7 +2529,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2578,7 +2578,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2627,7 +2627,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2676,7 +2676,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2725,7 +2725,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2774,7 +2774,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2823,7 +2823,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c702006-8a9f-4071-afeb-ac18be87874c?api-version=2016-03-30 @@ -2873,10 +2873,10 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2957,12 +2957,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -3027,12 +3027,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: '' @@ -3079,12 +3079,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml index 8e053a37e20..293d85ef99c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml @@ -76,12 +76,12 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -157,7 +157,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -208,7 +208,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -259,7 +259,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -310,7 +310,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -361,7 +361,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -412,7 +412,7 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626908ca-83e5-49da-b924-2a062c8ae312?api-version=2016-03-30 @@ -464,10 +464,10 @@ interactions: --network-plugin User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -548,12 +548,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -614,12 +614,12 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -672,7 +672,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -721,7 +721,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -770,7 +770,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -819,7 +819,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -868,7 +868,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -917,7 +917,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -966,7 +966,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -1015,7 +1015,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -1064,7 +1064,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -1113,7 +1113,7 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe131cc9-b744-43c6-bfb2-0aace572dcff?api-version=2016-03-30 @@ -1163,10 +1163,10 @@ interactions: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -1220,12 +1220,12 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1336,12 +1336,12 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1431,7 +1431,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1480,7 +1480,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1529,7 +1529,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1578,7 +1578,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1627,7 +1627,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1676,7 +1676,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1725,7 +1725,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1774,7 +1774,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1823,7 +1823,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1872,7 +1872,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1921,7 +1921,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -1970,7 +1970,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2019,7 +2019,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2068,7 +2068,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2117,7 +2117,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2166,7 +2166,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2215,7 +2215,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2264,7 +2264,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2313,7 +2313,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2362,7 +2362,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2411,7 +2411,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2460,7 +2460,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2509,7 +2509,7 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/037e519e-0baf-463f-8002-4419bdd766fa?api-version=2016-03-30 @@ -2559,10 +2559,10 @@ interactions: - --resource-group --name --enable-ahub User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2651,12 +2651,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -2721,12 +2721,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2020-11-01 response: body: string: '' @@ -2773,12 +2773,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml index aa3976d0273..832fc01b624 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml @@ -78,7 +78,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -444,7 +444,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -530,7 +530,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -636,7 +636,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -865,7 +865,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml index fa8e7cd15e3..05116e5a0c5 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml @@ -77,7 +77,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -537,7 +537,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -619,7 +619,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -721,7 +721,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -950,7 +950,7 @@ interactions: - python/3.8.7 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml index e0747d7ef7e..5ec3b39679b 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml @@ -76,12 +76,12 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -158,7 +158,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -208,7 +208,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -258,7 +258,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -308,7 +308,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -358,7 +358,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -408,7 +408,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -458,7 +458,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/29d16d76-4358-4cb4-8870-f800e3f5a1bf?api-version=2017-08-31 @@ -509,10 +509,10 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -596,12 +596,12 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -707,12 +707,12 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -797,7 +797,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/09137cf6-af73-4eed-bcf5-72d847f4c929?api-version=2017-08-31 @@ -846,7 +846,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/09137cf6-af73-4eed-bcf5-72d847f4c929?api-version=2017-08-31 @@ -895,7 +895,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/09137cf6-af73-4eed-bcf5-72d847f4c929?api-version=2017-08-31 @@ -944,7 +944,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/09137cf6-af73-4eed-bcf5-72d847f4c929?api-version=2017-08-31 @@ -994,10 +994,10 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml index 8cf815eae7c..986604f042b 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml @@ -76,12 +76,12 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -158,7 +158,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -208,7 +208,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -258,7 +258,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -308,7 +308,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -358,7 +358,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -408,7 +408,7 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/ffccc012-c26b-4523-8ec5-98c22d2bfada?api-version=2017-08-31 @@ -459,10 +459,10 @@ interactions: --aad-admin-group-object-ids -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -546,12 +546,12 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -657,12 +657,12 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -747,7 +747,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4d50a748-8b2b-49cd-9b9e-8e76f5aead6f?api-version=2017-08-31 @@ -796,7 +796,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4d50a748-8b2b-49cd-9b9e-8e76f5aead6f?api-version=2017-08-31 @@ -845,7 +845,7 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/operations/4d50a748-8b2b-49cd-9b9e-8e76f5aead6f?api-version=2017-08-31 @@ -895,10 +895,10 @@ interactions: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml index ac671403957..54a1a4dce1d 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -483,7 +483,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -533,7 +533,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -583,7 +583,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -633,7 +633,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -683,7 +683,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -733,7 +733,7 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcfaf1f1-b93b-4831-a107-7d5412d5e7d3?api-version=2016-03-30 @@ -784,10 +784,10 @@ interactions: --service-principal --client-secret --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -860,12 +860,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -940,12 +940,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1020,12 +1020,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1100,12 +1100,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1154,12 +1154,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1250,12 +1250,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1332,7 +1332,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efb9088f-64a5-4929-afa8-08722c17a258?api-version=2016-03-30 @@ -1381,7 +1381,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efb9088f-64a5-4929-afa8-08722c17a258?api-version=2016-03-30 @@ -1430,7 +1430,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efb9088f-64a5-4929-afa8-08722c17a258?api-version=2016-03-30 @@ -1479,7 +1479,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/efb9088f-64a5-4929-afa8-08722c17a258?api-version=2016-03-30 @@ -1529,10 +1529,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1605,12 +1605,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1685,12 +1685,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml index 3d18befca37..bc2fa1519a3 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml @@ -74,12 +74,12 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -153,7 +153,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -203,7 +203,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -253,7 +253,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -303,7 +303,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -353,7 +353,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -403,7 +403,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -453,7 +453,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -503,7 +503,7 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9d7eca18-b34f-430e-bb79-ef505dcc32f4?api-version=2017-08-31 @@ -554,10 +554,10 @@ interactions: --enable-managed-identity User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -638,12 +638,12 @@ interactions: - -g User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -726,12 +726,12 @@ interactions: - -g -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -814,12 +814,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -902,12 +902,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -958,12 +958,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1014,12 +1014,12 @@ interactions: - -g -n -f User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1068,12 +1068,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1174,12 +1174,12 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1261,7 +1261,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1310,7 +1310,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1359,7 +1359,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1408,7 +1408,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1457,7 +1457,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1506,7 +1506,7 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc7ba219-82e3-40cd-8849-f0e2d84120aa?api-version=2017-08-31 @@ -1556,10 +1556,10 @@ interactions: - -g -n --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1640,12 +1640,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1728,12 +1728,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml index 8ba94de3b8f..95a8d4c6819 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -339,12 +339,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -405,12 +405,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -471,12 +471,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -537,12 +537,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -603,12 +603,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -669,12 +669,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -735,12 +735,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -801,12 +801,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -879,7 +879,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -929,7 +929,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -979,7 +979,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1029,7 +1029,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1079,7 +1079,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1130,10 +1130,10 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1206,12 +1206,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1286,12 +1286,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -1340,12 +1340,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1406,12 +1406,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1466,7 +1466,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1515,7 +1515,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1564,7 +1564,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1613,7 +1613,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1662,7 +1662,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1712,10 +1712,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1770,12 +1770,12 @@ interactions: - --resource-group --cluster-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1839,12 +1839,12 @@ interactions: - --resource-group --cluster-name -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1908,12 +1908,12 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1975,12 +1975,12 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2039,7 +2039,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2088,7 +2088,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2137,7 +2137,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2186,7 +2186,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2235,7 +2235,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2284,7 +2284,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0eba8ab8-8302-4c2b-bab0-bd17d9d4207a?api-version=2016-03-30 @@ -2334,10 +2334,10 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2392,12 +2392,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2452,12 +2452,12 @@ interactions: - --resource-group --cluster-name --nodepool-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\"\ @@ -2506,12 +2506,12 @@ interactions: - --resource-group --cluster-name --nodepool-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\"\ @@ -2560,12 +2560,12 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2627,12 +2627,12 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2691,7 +2691,7 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/407ce8a7-97e0-480d-81de-16c26290aaef?api-version=2016-03-30 @@ -2741,10 +2741,10 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2799,12 +2799,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -2870,12 +2870,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: '' @@ -2922,12 +2922,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml index dc6370675cb..fac6bd1df7f 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -150,7 +150,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -199,7 +199,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -248,7 +248,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -297,7 +297,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -346,7 +346,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -395,7 +395,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -445,10 +445,10 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -529,12 +529,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -617,12 +617,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -669,12 +669,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -735,12 +735,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -799,7 +799,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -850,7 +850,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -899,7 +899,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -948,7 +948,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -998,10 +998,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1056,12 +1056,12 @@ interactions: - --resource-group --cluster-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1125,12 +1125,12 @@ interactions: - --resource-group --cluster-name -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1194,12 +1194,12 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1261,12 +1261,12 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1325,7 +1325,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1374,7 +1374,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1423,7 +1423,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1472,7 +1472,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1521,7 +1521,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1570,7 +1570,7 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -1620,10 +1620,10 @@ interactions: - --resource-group --cluster-name --name --node-count User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1678,12 +1678,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1738,12 +1738,12 @@ interactions: - --resource-group --cluster-name --nodepool-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\"\ @@ -1792,12 +1792,12 @@ interactions: - --resource-group --cluster-name --nodepool-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\"\ @@ -1846,12 +1846,12 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1913,12 +1913,12 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1977,7 +1977,7 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e862890f-2df3-480e-a391-0a4d372a1887?api-version=2016-03-30 @@ -2027,10 +2027,10 @@ interactions: - --resource-group --cluster-name --name --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2085,12 +2085,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -2156,12 +2156,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: '' @@ -2208,12 +2208,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml index bfceec7da94..da7ead9e973 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml @@ -75,12 +75,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -141,12 +141,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -207,12 +207,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service\ @@ -273,12 +273,12 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -351,7 +351,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf37350-d6da-4da3-8fd4-60962859b1f7?api-version=2016-03-30 @@ -401,7 +401,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf37350-d6da-4da3-8fd4-60962859b1f7?api-version=2016-03-30 @@ -451,7 +451,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf37350-d6da-4da3-8fd4-60962859b1f7?api-version=2016-03-30 @@ -501,7 +501,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf37350-d6da-4da3-8fd4-60962859b1f7?api-version=2016-03-30 @@ -551,7 +551,7 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf37350-d6da-4da3-8fd4-60962859b1f7?api-version=2016-03-30 @@ -602,10 +602,10 @@ interactions: --service-principal --client-secret User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -678,12 +678,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -758,12 +758,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -812,12 +812,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -878,12 +878,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -938,7 +938,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d36e45c4-db01-465f-bf70-15f6294363f7?api-version=2016-03-30 @@ -987,7 +987,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d36e45c4-db01-465f-bf70-15f6294363f7?api-version=2016-03-30 @@ -1036,7 +1036,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d36e45c4-db01-465f-bf70-15f6294363f7?api-version=2016-03-30 @@ -1085,7 +1085,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d36e45c4-db01-465f-bf70-15f6294363f7?api-version=2016-03-30 @@ -1135,10 +1135,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1193,12 +1193,12 @@ interactions: - --resource-group --cluster-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1262,12 +1262,12 @@ interactions: - --resource-group --cluster-name -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1331,12 +1331,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1408,12 +1408,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1468,7 +1468,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/865faefb-e8d8-4056-9ff5-f3837cf6bfe4?api-version=2016-03-30 @@ -1517,7 +1517,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/865faefb-e8d8-4056-9ff5-f3837cf6bfe4?api-version=2016-03-30 @@ -1566,7 +1566,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/865faefb-e8d8-4056-9ff5-f3837cf6bfe4?api-version=2016-03-30 @@ -1615,7 +1615,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/865faefb-e8d8-4056-9ff5-f3837cf6bfe4?api-version=2016-03-30 @@ -1664,7 +1664,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/865faefb-e8d8-4056-9ff5-f3837cf6bfe4?api-version=2016-03-30 @@ -1714,10 +1714,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1772,12 +1772,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1832,12 +1832,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1913,12 +1913,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2020-11-01 response: body: string: '' @@ -1963,12 +1963,12 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2030,12 +2030,12 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2094,7 +2094,7 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61e2ba5f-16f6-40a3-a2f5-cf6992497e3c?api-version=2016-03-30 @@ -2144,10 +2144,10 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2202,12 +2202,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2264,12 +2264,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml index 3a6c75cb230..7f0d69398d8 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml @@ -72,12 +72,12 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -150,7 +150,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -199,7 +199,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -248,7 +248,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -297,7 +297,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -346,7 +346,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -395,7 +395,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -444,7 +444,7 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/433a0ce0-a46c-4ca0-aa37-18bc1c34bfab?api-version=2016-03-30 @@ -494,10 +494,10 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -578,12 +578,12 @@ interactions: - -g -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -666,12 +666,12 @@ interactions: - -g -n --file User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2020-11-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ @@ -720,12 +720,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -786,12 +786,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -846,7 +846,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d31fb36f-e56d-4dad-b4fc-25d35b652d72?api-version=2016-03-30 @@ -895,7 +895,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d31fb36f-e56d-4dad-b4fc-25d35b652d72?api-version=2016-03-30 @@ -944,7 +944,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d31fb36f-e56d-4dad-b4fc-25d35b652d72?api-version=2016-03-30 @@ -993,7 +993,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d31fb36f-e56d-4dad-b4fc-25d35b652d72?api-version=2016-03-30 @@ -1042,7 +1042,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d31fb36f-e56d-4dad-b4fc-25d35b652d72?api-version=2016-03-30 @@ -1092,10 +1092,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1150,12 +1150,12 @@ interactions: - --resource-group --cluster-name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1219,12 +1219,12 @@ interactions: - --resource-group --cluster-name -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1288,12 +1288,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1365,12 +1365,12 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1425,7 +1425,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a61cf27-584b-40d2-9302-e84576bbd57c?api-version=2016-03-30 @@ -1474,7 +1474,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a61cf27-584b-40d2-9302-e84576bbd57c?api-version=2016-03-30 @@ -1523,7 +1523,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a61cf27-584b-40d2-9302-e84576bbd57c?api-version=2016-03-30 @@ -1572,7 +1572,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a61cf27-584b-40d2-9302-e84576bbd57c?api-version=2016-03-30 @@ -1621,7 +1621,7 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a61cf27-584b-40d2-9302-e84576bbd57c?api-version=2016-03-30 @@ -1671,10 +1671,10 @@ interactions: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1729,12 +1729,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ @@ -1789,12 +1789,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2020-11-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1870,12 +1870,12 @@ interactions: - --resource-group --cluster-name --name --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2020-11-01 response: body: string: '' @@ -1920,12 +1920,12 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -1987,12 +1987,12 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2051,7 +2051,7 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313cd379-59aa-4437-bc69-4201c7ef9921?api-version=2016-03-30 @@ -2101,10 +2101,10 @@ interactions: - --resource-group --cluster-name --name --mode User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2159,12 +2159,12 @@ interactions: - --resource-group --cluster-name --name User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ @@ -2221,12 +2221,12 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml index 6ccb9a21c6a..e6155f43bca 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml @@ -19,7 +19,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-12-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":"2020-11-26T06:56:42Z"},"properties":{"provisioningState":"Succeeded"}}' @@ -74,12 +74,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -153,7 +153,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -203,7 +203,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -253,7 +253,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -303,7 +303,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -353,7 +353,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -403,7 +403,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/617bac30-359e-41a4-98b3-69a0a6578861?api-version=2016-03-30 @@ -454,10 +454,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -538,12 +538,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -626,12 +626,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -687,12 +687,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster_msi.yaml index 84350141f83..06e1e0fd017 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster_msi.yaml @@ -19,7 +19,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-12-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":"2020-11-26T04:10:15Z"},"properties":{"provisioningState":"Succeeded"}}' @@ -74,12 +74,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -153,7 +153,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -203,7 +203,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -253,7 +253,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -303,7 +303,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -353,7 +353,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -403,7 +403,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe18e69c-18ef-4b6b-99fd-8257c42a7e7b?api-version=2016-03-30 @@ -454,10 +454,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -538,12 +538,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -626,12 +626,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -687,12 +687,12 @@ interactions: - -g -n --node-image-only --yes User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml index b66272e9d7a..e2555e66b2c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml @@ -19,7 +19,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-12-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":"2020-11-26T07:00:33Z"},"properties":{"provisioningState":"Succeeded"}}' @@ -74,12 +74,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -153,7 +153,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -203,7 +203,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -253,7 +253,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -303,7 +303,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -353,7 +353,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -403,7 +403,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5222548e-2cde-4703-b84a-b50e39f94ef9?api-version=2016-03-30 @@ -454,10 +454,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -540,12 +540,12 @@ interactions: - --resource-group --cluster-name -n --node-image-only --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -601,12 +601,12 @@ interactions: - --resource-group --cluster-name -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool_msi.yaml index 5c98ae5b601..abc29599824 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool_msi.yaml @@ -19,7 +19,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-12-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":"2020-11-26T04:13:32Z"},"properties":{"provisioningState":"Succeeded"}}' @@ -74,12 +74,12 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -153,7 +153,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -203,7 +203,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -253,7 +253,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -303,7 +303,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -353,7 +353,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -403,7 +403,7 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b72fb05d-f627-4370-97cc-45a9ab6efd41?api-version=2016-03-30 @@ -454,10 +454,10 @@ interactions: -o User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -540,12 +540,12 @@ interactions: - --resource-group --cluster-name -n --node-image-only --no-wait User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002/upgradeNodeImageVersion?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -601,12 +601,12 @@ interactions: - --resource-group --cluster-name -n User-Agent: - python/3.6.9 (Linux-5.4.0-1031-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.11 - msrest_azure/0.6.3 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2020-11-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_loadbalancer.py b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_loadbalancer.py index 707244473fe..e79015b464a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_loadbalancer.py +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_loadbalancer.py @@ -4,10 +4,10 @@ # -------------------------------------------------------------------------------------------- import unittest -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfile -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes -from azure.mgmt.containerservice.v2020_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPs +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfile +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes +from azure.mgmt.containerservice.v2020_12_01.models import ManagedClusterLoadBalancerProfileOutboundIPs from azure.cli.core.util import CLIError from azure.cli.command_modules.acs import _loadbalancer as loadbalancer diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 964f5a4b844..5307db7f3bd 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -30,7 +30,7 @@ azure-mgmt-compute==19.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc16 -azure-mgmt-containerservice==9.4.0 +azure-mgmt-containerservice==11.0.0 azure-mgmt-core==1.2.1 azure-core==1.10.0 azure-mgmt-cosmosdb==3.0.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 964f5a4b844..5307db7f3bd 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -30,7 +30,7 @@ azure-mgmt-compute==19.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc16 -azure-mgmt-containerservice==9.4.0 +azure-mgmt-containerservice==11.0.0 azure-mgmt-core==1.2.1 azure-core==1.10.0 azure-mgmt-cosmosdb==3.0.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index c3073582350..487209c6cc1 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -30,7 +30,7 @@ azure-mgmt-compute==19.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc16 -azure-mgmt-containerservice==9.4.0 +azure-mgmt-containerservice==11.0.0 azure-mgmt-core==1.2.1 azure-core==1.10.0 azure-mgmt-cosmosdb==3.0.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 12d5fc1ee9c..dcfdedcb830 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -76,7 +76,7 @@ 'azure-mgmt-containerinstance~=1.4', 'azure-mgmt-containerregistry==3.0.0rc16', 'azure-mgmt-cosmosdb~=3.0.0', - 'azure-mgmt-containerservice~=9.4.0', + 'azure-mgmt-containerservice~=11.0.0', 'azure-mgmt-databoxedge~=0.2.0', 'azure-mgmt-datalake-analytics~=0.2.1', 'azure-mgmt-datalake-store~=0.5.0',