diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py b/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py index 6d59d5690fb..ead278033d3 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py @@ -7,12 +7,12 @@ from .base import ScenarioTest, LiveScenarioTest from .preparers import (StorageAccountPreparer, ResourceGroupPreparer, RoleBasedServicePrincipalPreparer, - KeyVaultPreparer, ManagedApplicationPreparer) + KeyVaultPreparer, AADGraphUserReplacer, ManagedApplicationPreparer) from .exceptions import CliTestError from .checkers import (JMESPathCheck, JMESPathCheckExists, JMESPathCheckGreaterThan, NoneCheck, StringCheck, StringContainCheck) from .decorators import api_version_constraint -from .utilities import create_random_name, AADGraphUserReplacer +from .utilities import create_random_name from .patches import MOCKED_USER_NAME __all__ = ['ScenarioTest', 'LiveScenarioTest', 'ResourceGroupPreparer', 'StorageAccountPreparer', diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/base.py b/src/azure-cli-testsdk/azure/cli/testsdk/base.py index 2f04ff278c2..42567ae1eb2 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/base.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/base.py @@ -11,7 +11,7 @@ import unittest from azure_devtools.scenario_tests import (IntegrationTestBase, ReplayableTest, SubscriptionRecordingProcessor, - OAuthRequestResponsesFilter, LargeRequestBodyProcessor, + OAuthRequestResponsesFilter, GeneralNameReplacer, LargeRequestBodyProcessor, LargeResponseBodyProcessor, LargeResponseBodyReplacer, RequestUrlNormalizer, live_only, DeploymentNameReplacer, patch_time_sleep_api, create_random_name) @@ -21,7 +21,7 @@ patch_retrieve_token_for_user, patch_long_run_operation_delay, patch_progress_controller) from .exceptions import CliExecutionError -from .utilities import find_recording_dir, StorageAccountKeyReplacer, GraphClientPasswordReplacer, GeneralNameReplacer +from .utilities import find_recording_dir, StorageAccountKeyReplacer from .reverse_dependency import get_dummy_cli logger = logging.getLogger('azure.cli.testsdk') @@ -78,7 +78,7 @@ def __init__(self, method_name, config_file=None, recording_name=None, self.name_replacer = GeneralNameReplacer() self.kwargs = {} self.test_guid_count = 0 - self._processors_to_reset = [StorageAccountKeyReplacer(), GraphClientPasswordReplacer()] + self._processors_to_reset = [StorageAccountKeyReplacer()] default_recording_processors = [ SubscriptionRecordingProcessor(MOCKED_SUBSCRIPTION_ID), OAuthRequestResponsesFilter(), diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py b/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py index 73aaf65b82d..fb7f382321b 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py @@ -8,36 +8,14 @@ from azure_devtools.scenario_tests import AbstractPreparer, SingleValueReplacer -from .base import LiveScenarioTest +from .base import execute from .exceptions import CliTestError from .reverse_dependency import get_dummy_cli -from .utilities import StorageAccountKeyReplacer, GraphClientPasswordReplacer - - -# This preparer's traffic is not recorded. -# As a result when tests are run in record mode, sdk calls cannot be made to return the prepared resource group. -# Rather the deterministic prepared resource's information should be returned. -class NoTrafficRecordingPreparer(AbstractPreparer): - from .base import execute as _raw_execute - - def __init__(self, *args, **kwargs): - super(NoTrafficRecordingPreparer, self).__init__(disable_recording=True, *args, **kwargs) - - def live_only_execute(self, cli_ctx, command, expect_failure=False): - try: - if self.test_class_instance.in_recording: - return self._raw_execute(cli_ctx, command, expect_failure) - except AttributeError: - # A test might not have an in_recording attribute. Run live if this is an instance of LiveScenarioTest - if isinstance(self.test_class_instance, LiveScenarioTest): - return self._raw_execute(cli_ctx, command, expect_failure) - - return None # Resource Group Preparer and its shorthand decorator -class ResourceGroupPreparer(NoTrafficRecordingPreparer, SingleValueReplacer): +class ResourceGroupPreparer(AbstractPreparer, SingleValueReplacer): def __init__(self, name_prefix='clitest.rg', parameter_name='resource_group', parameter_name_for_location='resource_group_location', location='westus', @@ -63,22 +41,21 @@ def create_resource(self, name, **kwargs): if 'ENV_JOB_NAME' in os.environ: tags['job'] = os.environ['ENV_JOB_NAME'] tags = ' '.join(['{}={}'.format(key, value) for key, value in tags.items()]) - template = 'az group create --location {} --name {} --tag ' + tags - self.live_only_execute(self.cli_ctx, template.format(self.location, name)) + template = 'az group create --location {} --name {} --tag ' + tags + execute(self.cli_ctx, template.format(self.location, name)) self.test_class_instance.kwargs[self.key] = name return {self.parameter_name: name, self.parameter_name_for_location: self.location} def remove_resource(self, name, **kwargs): - # delete group if test is being recorded and if the group is not a dev rg if not self.dev_setting_name: - self.live_only_execute(self.cli_ctx, 'az group delete --name {} --yes --no-wait'.format(name)) + execute(self.cli_ctx, 'az group delete --name {} --yes --no-wait'.format(name)) # Storage Account Preparer and its shorthand decorator # pylint: disable=too-many-instance-attributes -class StorageAccountPreparer(NoTrafficRecordingPreparer, SingleValueReplacer): +class StorageAccountPreparer(AbstractPreparer, SingleValueReplacer): def __init__(self, name_prefix='clitest', sku='Standard_LRS', location='westus', parameter_name='storage_account', resource_group_parameter_name='resource_group', skip_delete=True, dev_setting_name='AZURE_CLI_TEST_DEV_STORAGE_ACCOUNT_NAME', key='sa'): @@ -97,25 +74,19 @@ def create_resource(self, name, **kwargs): if not self.dev_setting_name: template = 'az storage account create -n {} -g {} -l {} --sku {}' - self.live_only_execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) + execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) else: name = self.dev_setting_name - try: - account_key = self.live_only_execute(self.cli_ctx, - 'storage account keys list -n {} -g {} --query "[0].value" -otsv' - .format(name, group)).output - except AttributeError: # live only execute returns None if playing from record - account_key = None - + account_key = execute(self.cli_ctx, 'storage account keys list -n {} -g {} --query "[0].value" -otsv' + .format(name, group)).output self.test_class_instance.kwargs[self.key] = name - return {self.parameter_name: name, - self.parameter_name + '_info': (name, account_key or StorageAccountKeyReplacer.KEY_REPLACEMENT)} + return {self.parameter_name: name, self.parameter_name + '_info': (name, account_key)} def remove_resource(self, name, **kwargs): if not self.skip_delete and not self.dev_setting_name: group = self._get_resource_group(**kwargs) - self.live_only_execute(self.cli_ctx, 'az storage account delete -n {} -g {} --yes'.format(name, group)) + execute(self.cli_ctx, 'az storage account delete -n {} -g {} --yes'.format(name, group)) def _get_resource_group(self, **kwargs): try: @@ -129,7 +100,7 @@ def _get_resource_group(self, **kwargs): # KeyVault Preparer and its shorthand decorator # pylint: disable=too-many-instance-attributes -class KeyVaultPreparer(NoTrafficRecordingPreparer, SingleValueReplacer): +class KeyVaultPreparer(AbstractPreparer, SingleValueReplacer): def __init__(self, name_prefix='clitest', sku='standard', location='westus', parameter_name='key_vault', resource_group_parameter_name='resource_group', skip_delete=True, dev_setting_name='AZURE_CLI_TEST_DEV_KEY_VAULT_NAME', key='kv'): @@ -147,7 +118,7 @@ def create_resource(self, name, **kwargs): if not self.dev_setting_name: group = self._get_resource_group(**kwargs) template = 'az keyvault create -n {} -g {} -l {} --sku {}' - self.live_only_execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) + execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) return {self.parameter_name: name} self.test_class_instance.kwargs[self.key] = name @@ -156,7 +127,7 @@ def create_resource(self, name, **kwargs): def remove_resource(self, name, **kwargs): if not self.skip_delete and not self.dev_setting_name: group = self._get_resource_group(**kwargs) - self.live_only_execute(self.cli_ctx, 'az keyvault delete -n {} -g {} --yes'.format(name, group)) + execute(self.cli_ctx, 'az keyvault delete -n {} -g {} --yes'.format(name, group)) def _get_resource_group(self, **kwargs): try: @@ -170,7 +141,7 @@ def _get_resource_group(self, **kwargs): # Role based access control service principal preparer # pylint: disable=too-many-instance-attributes -class RoleBasedServicePrincipalPreparer(NoTrafficRecordingPreparer, SingleValueReplacer): +class RoleBasedServicePrincipalPreparer(AbstractPreparer, SingleValueReplacer): def __init__(self, name_prefix='clitest', skip_assignment=True, parameter_name='sp_name', parameter_password='sp_password', dev_setting_sp_name='AZURE_CLI_TEST_DEV_SP_NAME', @@ -189,17 +160,10 @@ def create_resource(self, name, **kwargs): if not self.dev_setting_sp_name: command = 'az ad sp create-for-rbac -n {}{}' \ .format(name, ' --skip-assignment' if self.skip_assignment else '') - - try: - self.result = self.live_only_execute(self.cli_ctx, command).get_output_in_json() - except AttributeError: # live only execute returns None if playing from record - pass - + self.result = execute(self.cli_ctx, command).get_output_in_json() self.test_class_instance.kwargs[self.key] = name self.test_class_instance.kwargs['{}_pass'.format(self.key)] = self.parameter_password - return {self.parameter_name: name, - self.parameter_password: self.result.get('password') or GraphClientPasswordReplacer.PWD_REPLACEMENT} - + return {self.parameter_name: name, self.parameter_password: self.result['password']} self.test_class_instance.kwargs[self.key] = self.dev_setting_sp_name self.test_class_instance.kwargs['{}_pass'.format(self.key)] = self.dev_setting_sp_password return {self.parameter_name: self.dev_setting_sp_name, @@ -207,15 +171,13 @@ def create_resource(self, name, **kwargs): def remove_resource(self, name, **kwargs): if not self.dev_setting_sp_name: - self.live_only_execute(self.cli_ctx, 'az ad sp delete --id {}'.format(self.result.get('appId'))) + execute(self.cli_ctx, 'az ad sp delete --id {}'.format(self.result['appId'])) # Managed Application preparer # pylint: disable=too-many-instance-attributes class ManagedApplicationPreparer(AbstractPreparer, SingleValueReplacer): - from .base import execute - def __init__(self, name_prefix='clitest', parameter_name='aad_client_app_id', parameter_secret='aad_client_app_secret', app_name='app_name', dev_setting_app_name='AZURE_CLI_TEST_DEV_APP_NAME', @@ -234,8 +196,7 @@ def create_resource(self, name, **kwargs): if not self.dev_setting_app_name: template = 'az ad app create --display-name {} --key-type Password --password {} --identifier-uris ' \ 'http://{}' - self.result = self.execute(self.cli_ctx, template.format(name, name, name)).get_output_in_json() - + self.result = execute(self.cli_ctx, template.format(name, name, name)).get_output_in_json() self.test_class_instance.kwargs[self.key] = name return {self.parameter_name: self.result['appId'], self.parameter_secret: name} self.test_class_instance.kwargs[self.key] = name @@ -244,8 +205,32 @@ def create_resource(self, name, **kwargs): def remove_resource(self, name, **kwargs): if not self.dev_setting_app_name: - self.execute(self.cli_ctx, 'az ad app delete --id {}'.format(self.result['appId'])) + execute(self.cli_ctx, 'az ad app delete --id {}'.format(self.result['appId'])) + + +class AADGraphUserReplacer: + def __init__(self, test_user, mock_user): + self.test_user = test_user + self.mock_user = mock_user + + def process_request(self, request): + test_user_encoded = self.test_user.replace('@', '%40') + if test_user_encoded in request.uri: + request.uri = request.uri.replace(test_user_encoded, self.mock_user.replace('@', '%40')) + + if request.body: + body = str(request.body) + if self.test_user in body: + request.body = body.replace(self.test_user, self.mock_user) + + return request + + def process_response(self, response): + if response['body']['string']: + response['body']['string'] = response['body']['string'].replace(self.test_user, + self.mock_user) + return response # Utility diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py index 91751e04382..944dcd7d202 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py @@ -6,9 +6,7 @@ import os from contextlib import contextmanager -from azure_devtools.scenario_tests import (create_random_name as create_random_name_base, RecordingProcessor, - GeneralNameReplacer as _BuggyGeneralNameReplacer) -from azure_devtools.scenario_tests.utilities import is_text_payload +from azure_devtools.scenario_tests import create_random_name as create_random_name_base, RecordingProcessor def create_random_name(prefix='clitest', length=24): @@ -49,22 +47,11 @@ def force_progress_logging(): az_logger.handlers[0].level = old_az_level -def _py3_byte_to_str(byte_or_str): - import logging - logger = logging.getLogger() - logger.warning(type(byte_or_str)) - try: - return str(byte_or_str, 'utf-8') if isinstance(byte_or_str, bytes) else byte_or_str - except TypeError: # python 2 doesn't allow decoding through str - return str(byte_or_str) - - class StorageAccountKeyReplacer(RecordingProcessor): """Replace the access token for service principal authentication in a response body.""" - KEY_REPLACEMENT = 'veryFakedStorageAccountKey==' - - def __init__(self): + def __init__(self, replacement='veryFakedStorageAccountKey=='): + self._replacement = replacement self._activated = False self._candidates = [] @@ -82,8 +69,8 @@ def process_request(self, request): # pylint: disable=no-self-use pass for candidate in self._candidates: if request.body: - body_string = _py3_byte_to_str(request.body) - request.body = body_string.replace(candidate, self.KEY_REPLACEMENT) + body_string = str(request.body, 'utf-8') if isinstance(request.body, bytes) else request.body + request.body = body_string.replace(candidate, self._replacement) return request def process_response(self, response): @@ -100,101 +87,6 @@ def process_response(self, response): for candidate in self._candidates: if response['body']['string']: body = response['body']['string'] - response['body']['string'] = _py3_byte_to_str(body) - response['body']['string'] = response['body']['string'].replace(candidate, self.KEY_REPLACEMENT) - return response - - -class GraphClientPasswordReplacer(RecordingProcessor): - """Replace the access token for service principal authentication in a response body.""" - - PWD_REPLACEMENT = 'ReplacedSPPassword123*' - - def __init__(self): - self._activated = False - - def reset(self): - self._activated = False - - def process_request(self, request): # pylint: disable=no-self-use - import re - import json - - try: - # issue with how vcr.Request.body adds b' to text types if self.body is used. - if request.body and self.PWD_REPLACEMENT in str(request.body): - return request - - pattern = r"[^/]+/applications$" - if re.search(pattern, request.path, re.I) and request.method.lower() == 'post': - self._activated = True - body = _py3_byte_to_str(request.body) - body = json.loads(body) - for password_cred in body['passwordCredentials']: - if password_cred['value']: - body_string = _py3_byte_to_str(request.body) - request.body = body_string.replace(password_cred['value'], self.PWD_REPLACEMENT) - - except (AttributeError, KeyError): - pass - - return request - - def process_response(self, response): - if self._activated: - try: - import json - - body = json.loads(response['body']['string']) - for password_cred in body['passwordCredentials']: - password_cred['value'] = password_cred['value'] or self.PWD_REPLACEMENT - - response['body']['string'] = json.dumps(body) - self._activated = False - - except (AttributeError, KeyError): - pass - + response['body']['string'] = str(body, 'utf-8') if isinstance(body, bytes) else body + response['body']['string'] = response['body']['string'].replace(candidate, self._replacement) return response - - -class AADGraphUserReplacer: - def __init__(self, test_user, mock_user): - self.test_user = test_user - self.mock_user = mock_user - - def process_request(self, request): - test_user_encoded = self.test_user.replace('@', '%40') - if test_user_encoded in request.uri: - request.uri = request.uri.replace(test_user_encoded, self.mock_user.replace('@', '%40')) - - if request.body: - body = _py3_byte_to_str(request.body) - if self.test_user in body: - request.body = body.replace(self.test_user, self.mock_user) - - return request - - def process_response(self, response): - if response['body']['string']: - response['body']['string'] = response['body']['string'].replace(self.test_user, - self.mock_user) - return response - - -# Override until this is fixed in azure_devtools -class GeneralNameReplacer(_BuggyGeneralNameReplacer): - - def process_request(self, request): - for old, new in self.names_name: - request.uri = request.uri.replace(old, new) - - if is_text_payload(request) and request.body: - try: - body = str(request.body, 'utf-8') if isinstance(request.body, bytes) else str(request.body) - except TypeError: # python 2 doesn't allow decoding through str - body = str(request.body) - if old in body: - request.body = body.replace(old, new) - - return request diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml index a7456502785..6808bf8809d 100644 --- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml +++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml @@ -1,4 +1,315 @@ interactions: +- request: + body: '{"location": "eastus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-04-15T22:37:57Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-15T22:37:57Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '268' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Apr 2019 22:37:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - -n --skip-assignment + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fclitest000002%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:38:00 GMT + duration: + - '1038578' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - ViIBCnSpL6+upqRchZXti8jjuoj+Po+TypBtwan6TMg= + ocp-aad-session-key: + - 4FnudsIIz3liPAJKs8_j82SmDFLf9MruzI71plSdH8hk2Yk0s5cw_bWBDKJBm97SyUnznHd0RKhgmXhjBgY6w-fsuwCXB-VPOXevB7FqYp2ZrQIo4rYB6LVaPa4gKRn9.NSYStg47DsaYeWPo4x7FG4rDM5wpO5F2zUUqJPqSgeI + pragma: + - no-cache + request-id: + - e7b4e89f-77fc-4622-a057-18a3107d9b6e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - -n --skip-assignment + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=startswith%28displayName%2C%27clitest000002%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:38:01 GMT + duration: + - '502949' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - tAfU859m9TMv99RRajlEbUsi/5BnvcvCFalsXAVDmG0= + ocp-aad-session-key: + - OwPCAqOE9f-U7ymeXW5-lPM1dyAFhu6u75GVUwarwt_vXpL162d4cDqrNY_8ghGd3QTJ6jgfmSK9yAwbPfedXOKlqaKBvnypOOLl1LY2r_6oDFhyHetcZGWE_kqNG4M0.ImryLrlnYE73g78ehdtOqdLTM92Veu7gSnDoG-sIZ_g + pragma: + - no-cache + request-id: + - d783467a-ce8f-4e27-a3bb-7105339915ff + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"availableToOtherTenants": false, "homepage": "https://clitest5bumxrza33", + "passwordCredentials": [{"startDate": "2019-04-15T22:38:01.425495Z", "endDate": + "2020-04-15T22:38:01.425495Z", "keyId": "51a40d3d-9c1a-4bd7-81fe-90ff730cf8f3", + "value": "a7d7cd74-a33a-40a1-9974-b216ed63b9ae", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], + "displayName": "clitest5bumxrza33", "identifierUris": ["http://clitest000002"]}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '413' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --skip-assignment + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"fd5c9acf-f6a4-43c6-a82c-15c53f5e2890","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest5bumxrza33","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://clitest5bumxrza33","identifierUris":["http://clitest000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; + charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-15T22:38:01.425495Z","keyId":"51a40d3d-9c1a-4bd7-81fe-90ff730cf8f3","startDate":"2019-04-15T22:38:01.425495Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2296' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:38:01 GMT + duration: + - '2480007' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890/Microsoft.DirectoryServices.Application + ocp-aad-diagnostics-server-name: + - Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0= + ocp-aad-session-key: + - 7nZLXUayuDHWBQq6W-JwiZPzKuS6xNdShfVAw09eUEKxEvlvr-zQ7UVqXZoal83KejaAwgs0scDFowrkLdqCQzQHjAPn_UY3fboDfcVirSeMTngYe0_ZUBcbGlcJ2Q8eDXHNRL2SGNgCTPCr6bmMIg.b9CMiUvITvugvF1ykPvwQjqP59KUCW2pkAHe1s67lKM + pragma: + - no-cache + request-id: + - 885417d2-5429-4d67-9cb7-a4a9bd6d041b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: '{"accountEnabled": "True", "appId": "e8e566ce-2862-4917-82c9-28c5600ad159"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '75' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --skip-assignment + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0171147d-7413-4fe8-bcaa-60740c3fefaa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest5bumxrza33","appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest5bumxrza33","errorUrl":null,"homepage":"https://clitest5bumxrza33","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["e8e566ce-2862-4917-82c9-28c5600ad159","http://clitest000002"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1690' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:38:02 GMT + duration: + - '1540682' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/0171147d-7413-4fe8-bcaa-60740c3fefaa/Microsoft.DirectoryServices.ServicePrincipal + ocp-aad-diagnostics-server-name: + - 0sfE/ORXQruXagUwgN6LKCMJnfSNsPKIg39HCVmIqe8= + ocp-aad-session-key: + - VOrACU7Tz8nLw1I0HpjBahAZuI-5PYE9Jztdr3P2wdGhOhR1xdjOUcf-q-1v86Nsu0AXuy4KaMDcWn4QNFjX62AOlHXM0qKPspPepXyqY8ODjXLOxOhO3_alg35cfKAdFNxtZf7yUN1ExP11xtHTMA.GjAVdhvXRyYLc9mj--D_ZXK6HuF4wRteIix5M6_-vz4 + pragma: + - no-cache + request-id: + - 4206732f-a366-419c-8ade-b6e7c2ca8565 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created - request: body: null headers: @@ -13,67 +324,51 @@ interactions: ParameterSetName: - -l --query User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators?api-version=2017-09-30&resource-type=managedClusters response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\"\ - ,\n \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.9.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.10.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.13\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.7\"\n },\n {\n \"\ - orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\ - \n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.8\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\",\n \"default\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.13.5\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n + \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.9.11\"\n },\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.12\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.13\"\n },\n {\n \"orchestratorVersion\": + \"1.11.8\"\n },\n {\n \"orchestratorVersion\": \"1.11.9\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.13\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.8\"\n },\n {\n \"orchestratorVersion\": + \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.9\"\n },\n {\n \"orchestratorVersion\": + \"1.12.6\"\n },\n {\n \"orchestratorVersion\": \"1.12.7\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.9\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.12.6\"\n },\n {\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.12.6\",\n \"upgrades\": [\n {\n \"orchestratorVersion\": + \"1.12.7\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '3052' + - '2087' content-type: - application/json date: - - Sun, 26 May 2019 04:38:08 GMT + - Mon, 15 Apr 2019 22:38:02 GMT expires: - '-1' pragma: @@ -106,15 +401,15 @@ interactions: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-26T04:38:02Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-15T22:37:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -123,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 04:38:08 GMT + - Mon, 15 Apr 2019 22:38:03 GMT expires: - '-1' pragma: @@ -138,14 +433,14 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + body: 'b''b\''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.11.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_DS1_v2", "osType": "Linux"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", - "secret": "c2493b92-1af7-4ad0-829d-fe51365540cb"}, "addonProfiles": {}, "enableRBAC": - true}}''' + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", + "secret": "a7d7cd74-a33a-40a1-9974-b216ed63b9ae"}, "addonProfiles": {}, "enableRBAC": + true}}\''''' headers: Accept: - application/json @@ -156,51 +451,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1239' + - '1232' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: http://clitest000002 not found in Active Directory tenant + 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, Please see https://aka.ms/aks-sp-help + for more details.\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/449eceb8-6a74-48fc-a18f-45b43d8aa0cd?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2017' + - '241' content-type: - application/json date: - - Sun, 26 May 2019 04:38:17 GMT + - Mon, 15 Apr 2019 22:38:19 GMT expires: - '-1' pragma: @@ -212,60 +490,57 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 201 - message: Created + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.11.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + [{"name": "nodepool1", "count": 1, "vmSize": "Standard_DS1_v2", "osType": "Linux"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", + "secret": "a7d7cd74-a33a-40a1-9974-b216ed63b9ae"}, "addonProfiles": {}, "enableRBAC": + true}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks wait + - aks create Connection: - keep-alive + Content-Length: + - '1232' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --created + - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size + --tags -c --no-wait User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US - method: GET + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: http://clitest000002 not found in Active Directory tenant + 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, Please see https://aka.ms/aks-sp-help + for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2017' + - '241' content-type: - application/json date: - - Sun, 26 May 2019 04:38:18 GMT + - Mon, 15 Apr 2019 22:38:38 GMT expires: - '-1' pragma: @@ -274,15 +549,89 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 400 + message: Bad Request +- request: + body: 'b''b\''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.11.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + [{"name": "nodepool1", "count": 1, "vmSize": "Standard_DS1_v2", "osType": "Linux"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", + "secret": "a7d7cd74-a33a-40a1-9974-b216ed63b9ae"}, "addonProfiles": {}, "enableRBAC": + true}}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1232' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size + --tags -c --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + 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=2019-02-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f0c3eaaa-44b9-45de-acd6-29c57ac92ce4?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '1941' + content-type: + - application/json + date: + - Mon, 15 Apr 2019 22:38:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: @@ -297,42 +646,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2017' + - '1941' content-type: - application/json date: - - Sun, 26 May 2019 04:38:48 GMT + - Mon, 15 Apr 2019 22:38:48 GMT expires: - '-1' pragma: @@ -364,42 +710,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2017' + - '1941' content-type: - application/json date: - - Sun, 26 May 2019 04:39:21 GMT + - Mon, 15 Apr 2019 22:39:18 GMT expires: - '-1' pragma: @@ -431,42 +774,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2017' + - '1941' content-type: - application/json date: - - Sun, 26 May 2019 04:39:52 GMT + - Mon, 15 Apr 2019 22:39:48 GMT expires: - '-1' pragma: @@ -498,42 +838,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\"\ - : \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"maxPods\": 110,\n\ - \ \"type\": \"AvailabilitySet\",\n \"provisioningState\": \"Creating\"\ - ,\n \"orchestratorVersion\": \"1.12.8\",\n \"osType\": \"Linux\"\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2017' + - '1941' content-type: - application/json date: - - Sun, 26 May 2019 04:40:22 GMT + - Mon, 15 Apr 2019 22:40:19 GMT expires: - '-1' pragma: @@ -565,42 +902,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:40:53 GMT + - Mon, 15 Apr 2019 22:40:49 GMT expires: - '-1' pragma: @@ -632,42 +966,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:41:23 GMT + - Mon, 15 Apr 2019 22:41:19 GMT expires: - '-1' pragma: @@ -699,42 +1030,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:41:54 GMT + - Mon, 15 Apr 2019 22:41:51 GMT expires: - '-1' pragma: @@ -766,42 +1094,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:42:25 GMT + - Mon, 15 Apr 2019 22:42:21 GMT expires: - '-1' pragma: @@ -833,42 +1158,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:42:56 GMT + - Mon, 15 Apr 2019 22:42:52 GMT expires: - '-1' pragma: @@ -900,42 +1222,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:43:27 GMT + - Mon, 15 Apr 2019 22:43:22 GMT expires: - '-1' pragma: @@ -967,42 +1286,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Creating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2002' content-type: - application/json date: - - Sun, 26 May 2019 04:43:57 GMT + - Mon, 15 Apr 2019 22:43:52 GMT expires: - '-1' pragma: @@ -1034,42 +1350,39 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\": \"\ - 1.12.8\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2080' + - '2003' content-type: - application/json date: - - Sun, 26 May 2019 04:44:27 GMT + - Mon, 15 Apr 2019 22:44:22 GMT expires: - '-1' pragma: @@ -1101,42 +1414,39 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\": \"\ - 1.12.8\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2080' + - '2003' content-type: - application/json date: - - Sun, 26 May 2019 04:44:29 GMT + - Mon, 15 Apr 2019 22:44:24 GMT expires: - '-1' pragma: @@ -1168,67 +1478,51 @@ interactions: ParameterSetName: - -l User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators?api-version=2017-09-30&resource-type=managedClusters response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\"\ - ,\n \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.9.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.10.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.13\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.7\"\n },\n {\n \"\ - orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\ - \n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.8\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\",\n \"default\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.13.5\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n + \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.9.11\"\n },\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.12\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.13\"\n },\n {\n \"orchestratorVersion\": + \"1.11.8\"\n },\n {\n \"orchestratorVersion\": \"1.11.9\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.13\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.8\"\n },\n {\n \"orchestratorVersion\": + \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.9\"\n },\n {\n \"orchestratorVersion\": + \"1.12.6\"\n },\n {\n \"orchestratorVersion\": \"1.12.7\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.9\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.12.6\"\n },\n {\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.12.6\",\n \"upgrades\": [\n {\n \"orchestratorVersion\": + \"1.12.7\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '3052' + - '2087' content-type: - application/json date: - - Sun, 26 May 2019 04:44:29 GMT + - Mon, 15 Apr 2019 22:44:25 GMT expires: - '-1' pragma: @@ -1260,67 +1554,51 @@ interactions: ParameterSetName: - -l -o User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators?api-version=2017-09-30&resource-type=managedClusters response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\"\ - ,\n \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.9.11\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"\ - 1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.10.13\"\n }\n ]\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.12\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.10.13\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.8\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.10.13\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.11.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.7\"\n },\n {\n \"\ - orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\ - \n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.11.9\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.12.8\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.12.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"\ - Kubernetes\",\n \"orchestratorVersion\": \"1.12.8\",\n \"default\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.13.5\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.13.5\"\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/orchestrators\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n + \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.9.10\",\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.9.11\"\n },\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.9.11\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.12\"\n },\n {\n \"orchestratorVersion\": + \"1.10.13\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.12\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.10.13\"\n },\n {\n \"orchestratorVersion\": + \"1.11.8\"\n },\n {\n \"orchestratorVersion\": \"1.11.9\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.10.13\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.8\"\n },\n {\n \"orchestratorVersion\": + \"1.11.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.8\",\n \"upgrades\": [\n {\n + \ \"orchestratorVersion\": \"1.11.9\"\n },\n {\n \"orchestratorVersion\": + \"1.12.6\"\n },\n {\n \"orchestratorVersion\": \"1.12.7\"\n + \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.11.9\",\n \"default\": true,\n \"upgrades\": + [\n {\n \"orchestratorVersion\": \"1.12.6\"\n },\n {\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.12.6\",\n \"upgrades\": [\n {\n \"orchestratorVersion\": + \"1.12.7\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.12.7\"\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '3052' + - '2087' content-type: - application/json date: - - Sun, 26 May 2019 04:44:30 GMT + - Mon, 15 Apr 2019 22:44:25 GMT expires: - '-1' pragma: @@ -1352,30 +1630,30 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeProfiles/default?api-version=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeprofiles/default\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ - ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.13.5\"\ - \n ]\n },\n \"agentPoolProfiles\": [\n {\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"\ - 1.13.5\"\n ]\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeprofiles/default\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n + \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": + \"1.11.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.12.7\",\n + \ \"1.12.6\"\n ]\n },\n \"agentPoolProfiles\": [\n {\n \"kubernetesVersion\": + \"1.11.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.12.7\",\n + \ \"1.12.6\"\n ]\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '583' + - '614' content-type: - application/json date: - - Sun, 26 May 2019 04:44:30 GMT + - Mon, 15 Apr 2019 22:44:26 GMT expires: - '-1' pragma: @@ -1407,30 +1685,30 @@ interactions: ParameterSetName: - -g -n --output User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeProfiles/default?api-version=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeprofiles/default\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ - ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.13.5\"\ - \n ]\n },\n \"agentPoolProfiles\": [\n {\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"\ - 1.13.5\"\n ]\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/upgradeprofiles/default\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n + \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": + \"1.11.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.12.7\",\n + \ \"1.12.6\"\n ]\n },\n \"agentPoolProfiles\": [\n {\n \"kubernetesVersion\": + \"1.11.9\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n \"1.12.7\",\n + \ \"1.12.6\"\n ]\n }\n ]\n }\n }" headers: cache-control: - no-cache content-length: - - '583' + - '614' content-type: - application/json date: - - Sun, 26 May 2019 04:44:32 GMT + - Mon, 15 Apr 2019 22:44:27 GMT expires: - '-1' pragma: @@ -1462,42 +1740,39 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\": \"\ - 1.12.8\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n\ - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\"\ - : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_eastus\",\n \"enableRBAC\": true,\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n }\n }\n }" headers: cache-control: - no-cache content-length: - - '2080' + - '2003' content-type: - application/json date: - - Sun, 26 May 2019 04:44:32 GMT + - Mon, 15 Apr 2019 22:44:28 GMT expires: - '-1' pragma: @@ -1516,16 +1791,15 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "tags": {"scenario_test": ""}, "properties": {"kubernetesVersion": - "1.12.8", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, - "vmSize": "Standard_DS1_v2", "osDiskSizeGB": 100, "maxPods": 110, "osType": - "Linux", "type": "AvailabilitySet", "orchestratorVersion": "1.12.8", "name": - "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": - [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "addonProfiles": {"httpApplicationRouting": {"enabled": + body: 'b''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.11.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + [{"name": "nodepool1", "count": 1, "vmSize": "Standard_DS1_v2", "osDiskSizeGB": + 100, "maxPods": 110, "osType": "Linux"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n"}]}}, "addonProfiles": {"httpApplicationRouting": {"enabled": true}}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16"}}}' + "dockerBridgeCidr": "172.17.0.1/16"}}}''' headers: Accept: - application/json @@ -1536,52 +1810,50 @@ interactions: Connection: - keep-alive Content-Length: - - '1425' + - '1365' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Updating\",\n \"orchestratorVersion\": \"1.12.8\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\"\ - : {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\"\ - : {\n \"HTTPApplicationRoutingZoneName\": \"717e301e92c64714a6b1.eastus.aksapp.io\"\ - \n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_eastus\"\ - ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\":\ - \ \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n }\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": + {\n \"HTTPApplicationRoutingZoneName\": \"aefb3e14b4e9461da615.eastus.aksapp.io\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_eastus\",\n + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n + \ }\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0ae67c36-7a27-48fb-b139-128ea18b3a6a?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/63e5f015-f5e9-482b-b201-6c59792401e9?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2270' + - '2194' content-type: - application/json date: - - Sun, 26 May 2019 04:44:36 GMT + - Mon, 15 Apr 2019 22:44:30 GMT expires: - '-1' pragma: @@ -1615,23 +1887,24 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0ae67c36-7a27-48fb-b139-128ea18b3a6a?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/63e5f015-f5e9-482b-b201-6c59792401e9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"367ce60a-277a-fb48-b139-128ea18b3a6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:44:36.7400595Z\"\n }" + string: "{\n \"name\": \"15f0e563-e9f5-2b48-b201-6c59792401e9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2019-04-15T22:44:30.4283958Z\",\n \"endTime\": + \"2019-04-15T22:44:54.2091898Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Sun, 26 May 2019 04:45:07 GMT + - Mon, 15 Apr 2019 22:44:59 GMT expires: - '-1' pragma: @@ -1663,24 +1936,40 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0ae67c36-7a27-48fb-b139-128ea18b3a6a?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 response: body: - string: "{\n \"name\": \"367ce60a-277a-fb48-b139-128ea18b3a6a\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2019-05-26T04:44:36.7400595Z\",\n \"\ - endTime\": \"2019-05-26T04:45:31.8743286Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\": + {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": + \"1.11.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-291e657d.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\": 100,\n \"storageProfile\": + \"ManagedDisks\",\n \"maxPods\": 110,\n \"osType\": \"Linux\"\n }\n + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\": + {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": + {\n \"HTTPApplicationRoutingZoneName\": \"aefb3e14b4e9461da615.eastus.aksapp.io\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_eastus\",\n + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n + \ }\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '2195' content-type: - application/json date: - - Sun, 26 May 2019 04:45:38 GMT + - Mon, 15 Apr 2019 22:45:00 GMT expires: - '-1' pragma: @@ -1706,48 +1995,80 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --addons + - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 - method: GET + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + 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=2019-02-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ - : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ - ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.12.8\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-2a95b96b.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS1_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\": \"\ - 1.12.8\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"http://clitest000002\"\n },\n \"addonProfiles\"\ - : {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\"\ - : {\n \"HTTPApplicationRoutingZoneName\": \"717e301e92c64714a6b1.eastus.aksapp.io\"\ - \n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_eastus\"\ - ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\":\ - \ \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n }\n }\n }" + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Apr 2019 22:45:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache content-length: - - '2272' + - '126' content-type: - application/json date: - - Sun, 26 May 2019 04:45:38 GMT + - Mon, 15 Apr 2019 22:45:32 GMT expires: - '-1' pragma: @@ -1776,46 +2097,235 @@ interactions: - aks delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 - 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=2019-02-01 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: '' + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 cache-control: - no-cache content-length: - - '0' + - '126' + content-type: + - application/json date: - - Sun, 26 May 2019 04:45:40 GMT + - Mon, 15 Apr 2019 22:46:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 pragma: - no-cache server: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 15 Apr 2019 22:46:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 15 Apr 2019 22:47:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 15 Apr 2019 22:47:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 15 Apr 2019 22:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -1830,14 +2340,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -1846,7 +2356,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:46:11 GMT + - Mon, 15 Apr 2019 22:48:35 GMT expires: - '-1' pragma: @@ -1878,14 +2388,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -1894,7 +2404,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:46:42 GMT + - Mon, 15 Apr 2019 22:49:06 GMT expires: - '-1' pragma: @@ -1926,14 +2436,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -1942,7 +2452,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:47:13 GMT + - Mon, 15 Apr 2019 22:49:37 GMT expires: - '-1' pragma: @@ -1974,14 +2484,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -1990,7 +2500,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:47:43 GMT + - Mon, 15 Apr 2019 22:50:07 GMT expires: - '-1' pragma: @@ -2022,14 +2532,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2038,7 +2548,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:48:14 GMT + - Mon, 15 Apr 2019 22:50:38 GMT expires: - '-1' pragma: @@ -2070,14 +2580,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2086,7 +2596,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:48:44 GMT + - Mon, 15 Apr 2019 22:51:08 GMT expires: - '-1' pragma: @@ -2118,14 +2628,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2134,7 +2644,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:49:17 GMT + - Mon, 15 Apr 2019 22:51:39 GMT expires: - '-1' pragma: @@ -2166,14 +2676,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2182,7 +2692,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:49:51 GMT + - Mon, 15 Apr 2019 22:52:09 GMT expires: - '-1' pragma: @@ -2214,14 +2724,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2230,7 +2740,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:50:22 GMT + - Mon, 15 Apr 2019 22:52:40 GMT expires: - '-1' pragma: @@ -2262,14 +2772,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2278,7 +2788,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:50:52 GMT + - Mon, 15 Apr 2019 22:53:11 GMT expires: - '-1' pragma: @@ -2310,14 +2820,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2326,7 +2836,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:51:22 GMT + - Mon, 15 Apr 2019 22:53:41 GMT expires: - '-1' pragma: @@ -2358,14 +2868,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2374,7 +2884,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:51:53 GMT + - Mon, 15 Apr 2019 22:54:11 GMT expires: - '-1' pragma: @@ -2406,14 +2916,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" headers: cache-control: - no-cache @@ -2422,7 +2932,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 04:52:23 GMT + - Mon, 15 Apr 2019 22:54:42 GMT expires: - '-1' pragma: @@ -2454,24 +2964,24 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49a9a510-d1c3-4873-b93e-b7d77564cfa9?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4de5049d-69eb-4b2e-a0ae-d83d36a23fa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\",\n \"\ - endTime\": \"2019-05-26T04:53:49.031219Z\"\n }" + string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\",\n \"endTime\": + \"2019-04-15T22:55:00.8073278Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Sun, 26 May 2019 04:53:54 GMT + - Mon, 15 Apr 2019 22:55:12 GMT expires: - '-1' pragma: @@ -2503,37 +3013,443 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-containerservice/5.2.0 Azure-SDK-For-Python AZURECLI/2.0.64 + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-containerservice/4.4.0 Azure-SDK-For-Python AZURECLI/2.0.62 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=2019-02-01 response: body: - string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed\ - \ cluster resource: cliakstest000003 in subscription: 00977cdb-163f-435f-9c32-39ec8ae61f4d,\ - \ resourceGroup: clitest000001.\"\n }" + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' + under resource group ''clitest000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '188' + - '180' content-type: - - application/json + - application/json; charset=utf-8 date: - - Sun, 26 May 2019 04:54:04 GMT + - Mon, 15 Apr 2019 22:55:13 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e8e566ce-2862-4917-82c9-28c5600ad159%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0171147d-7413-4fe8-bcaa-60740c3fefaa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest5bumxrza33","appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest5bumxrza33","errorUrl":null,"homepage":"https://clitest5bumxrza33","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","e8e566ce-2862-4917-82c9-28c5600ad159"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1693' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:55:14 GMT + duration: + - '543053' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - QcSfagiuMZ8udXU0pxMb2tb2BoM4+qRFHGLcFMiCX8A= + ocp-aad-session-key: + - GJVBCt7q3Qi71kxrXNW5SosWBOJjQbg4v4K3MHdSAzU0cfYnefDct7KW4lpETGlNte5kH1PgzkBXWgeiB8MFUgh8R0GhtHXQTAUKnjYKMdo0k58OZOznBCylKj-zSzkjuUyOrWI2aP1UlSgFkJrVRA.TpQR2d79MOqU44oVPuzOCOlTH9xwJyIup6PNTbVB5Js + pragma: + - no-cache + request-id: + - 04684657-40d8-4f58-bd0c-e3539336c0b5 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0171147d-7413-4fe8-bcaa-60740c3fefaa?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0171147d-7413-4fe8-bcaa-60740c3fefaa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest5bumxrza33","appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest5bumxrza33","errorUrl":null,"homepage":"https://clitest5bumxrza33","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","e8e566ce-2862-4917-82c9-28c5600ad159"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1690' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:55:14 GMT + duration: + - '570763' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + ocp-aad-session-key: + - QUHIJwb01qIE4LpvkPPO1HCW3FIC9_OrYRrHPSfXEIxM0BFRO-jdCikiwymTpWRp64JWBg6B6fZMIrvQJtHO9iHaTCX4Y6AjUSYtxxU28hQ1WrMu0KktPKbI0nGD2gLOwdujpQKFJv67_bekA9pxkw.uHNCG28INzXk5pSZsMuxB_gH5RfZQK7up2ZTW-VcDf0 + pragma: + - no-cache + request-id: + - c0bd33b8-bd55-4274-94f5-76350ab033ad + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest000002%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"fd5c9acf-f6a4-43c6-a82c-15c53f5e2890","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest5bumxrza33","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://clitest5bumxrza33","identifierUris":["http://clitest000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-15T22:38:01.425495Z","keyId":"51a40d3d-9c1a-4bd7-81fe-90ff730cf8f3","startDate":"2019-04-15T22:38:01.425495Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2213' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:55:14 GMT + duration: + - '819197' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= + ocp-aad-session-key: + - poAkasrpY1id3EFZqcmX6CrdfGCdI6yZkaKJvMIiuFNP8qfIImaV_o3YRCtbS0wFRwAqpw_qONuW49Tqa8jd8z3FyvJsfzFEUy4hUPmoK8jnUKJvUP1tLVCyGX81PNiETWRUbkVZSXqN_wg0Jtn1wA.wXTiql_ll5ctD5LW69wHsP87yb5gYQt0kcKHpmmSnSY + pragma: + - no-cache + request-id: + - 9cdfa17e-96f3-4142-a559-69783a99d735 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e8e566ce-2862-4917-82c9-28c5600ad159%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0171147d-7413-4fe8-bcaa-60740c3fefaa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest5bumxrza33","appId":"e8e566ce-2862-4917-82c9-28c5600ad159","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest5bumxrza33","errorUrl":null,"homepage":"https://clitest5bumxrza33","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access clitest5bumxrza33 on behalf of the signed-in user.","adminConsentDisplayName":"Access + clitest5bumxrza33","id":"dd8f62a5-528d-495e-ad08-547b6e859cdc","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access clitest5bumxrza33 on your behalf.","userConsentDisplayName":"Access + clitest5bumxrza33","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest000002","e8e566ce-2862-4917-82c9-28c5600ad159"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1693' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 15 Apr 2019 22:55:15 GMT + duration: + - '543457' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - ZGx5BTxWx3rJ0qV6fN7KouGYhLhktis4+Etrku5CN4A= + ocp-aad-session-key: + - -q4s-Xf3keHs3x3U28oy9KitH1v3O9JgEiZ4h1jYwXcI7iL0dbxQEHAAUgoAfDbGHaYp5v_3piIAagl21COyZCwxh9fnSFIU5w630Em3Jpwew-YCgJIdG43toQMRT7RdjG8K1w0S73t5YHSk62X8Ow.FIOkTLwWJE1Uad8nJYzoedQtLDif7itL2YPckG2CYnw + pragma: + - no-cache + request-id: + - ed0666b3-3b5b-43dd-9bb6-22c3b1e1717d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-mgmt-authorization/0.50.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%270171147d-7413-4fe8-bcaa-60740c3fefaa%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Apr 2019 22:55:15 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + azure-graphrbac/0.61.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: DELETE + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fd5c9acf-f6a4-43c6-a82c-15c53f5e2890?api-version=1.6 + response: + body: + string: '' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + date: + - Mon, 15 Apr 2019 22:55:15 GMT + duration: + - '1772448' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - O4KpSJbi5/6YCC+tDQQlh4m8zzG+ja7BdgLs4Moxbzs= + ocp-aad-session-key: + - MsG71cCL4pbYGMxm8vAW6iRr0VQabgm57aPUOEtQpYjM7o2A2BY6quTLzdowFtZ0p6IotBATZXvWjdiMvpOOEtGEye0NI89h5odoEAD9q8lgCV8wkA4xBuMqmdm4sEeCr29SL5-QcbtPWl2Bii9lVg.KVCCzDLZTGairO4trj8_HqYqjYp9UKQiW84-5K3w7nM + pragma: + - no-cache + request-id: + - 11e63a6a-c117-4cd6-8002-257e256acb08 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.4.34 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Apr 2019 22:55:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUSENWWEFTUjdaTC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/recordings/test_resource_group.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/recordings/test_resource_group.yaml index 2f4a28c3ecd..a79d04f17f5 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/recordings/test_resource_group.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/recordings/test_resource_group.yaml @@ -1,4 +1,54 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-07T20:36:31Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T20:36:31Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jun 2019 20:36:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: @@ -16,7 +66,7 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: DELETE @@ -30,11 +80,11 @@ interactions: content-length: - '0' date: - - Sun, 26 May 2019 07:01:46 GMT + - Fri, 07 Jun 2019 20:36:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -61,9 +111,9 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: body: string: '' @@ -73,11 +123,11 @@ interactions: content-length: - '0' date: - - Sun, 26 May 2019 07:02:01 GMT + - Fri, 07 Jun 2019 20:36:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -102,9 +152,9 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: body: string: '' @@ -114,11 +164,11 @@ interactions: content-length: - '0' date: - - Sun, 26 May 2019 07:02:16 GMT + - Fri, 07 Jun 2019 20:37:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -143,9 +193,9 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: body: string: '' @@ -155,7 +205,7 @@ interactions: content-length: - '0' date: - - Sun, 26 May 2019 07:02:32 GMT + - Fri, 07 Jun 2019 20:37:21 GMT expires: - '-1' pragma: @@ -182,7 +232,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: HEAD @@ -198,7 +248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:33 GMT + - Fri, 07 Jun 2019 20:37:22 GMT expires: - '-1' pragma: @@ -231,7 +281,7 @@ interactions: - -n -l --tag User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -247,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:35 GMT + - Fri, 07 Jun 2019 20:37:24 GMT expires: - '-1' pragma: @@ -276,7 +326,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: HEAD @@ -290,7 +340,7 @@ interactions: content-length: - '0' date: - - Sun, 26 May 2019 07:02:36 GMT + - Fri, 07 Jun 2019 20:37:24 GMT expires: - '-1' pragma: @@ -317,7 +367,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -333,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:37 GMT + - Fri, 07 Jun 2019 20:37:24 GMT expires: - '-1' pragma: @@ -362,7 +412,7 @@ interactions: - --tag User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -378,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:38 GMT + - Fri, 07 Jun 2019 20:37:25 GMT expires: - '-1' pragma: @@ -407,7 +457,7 @@ interactions: - -g --tags User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -423,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:39 GMT + - Fri, 07 Jun 2019 20:37:25 GMT expires: - '-1' pragma: @@ -456,7 +506,7 @@ interactions: - -g --tags User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -472,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:40 GMT + - Fri, 07 Jun 2019 20:37:26 GMT expires: - '-1' pragma: @@ -505,7 +555,7 @@ interactions: - -g --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -521,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:41 GMT + - Fri, 07 Jun 2019 20:37:26 GMT expires: - '-1' pragma: @@ -554,7 +604,7 @@ interactions: - -g --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -571,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:43 GMT + - Fri, 07 Jun 2019 20:37:27 GMT expires: - '-1' pragma: @@ -604,7 +654,7 @@ interactions: - -g --set --force-string User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -621,7 +671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:43 GMT + - Fri, 07 Jun 2019 20:37:28 GMT expires: - '-1' pragma: @@ -655,7 +705,7 @@ interactions: - -g --set --force-string User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -672,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:45 GMT + - Fri, 07 Jun 2019 20:37:29 GMT expires: - '-1' pragma: @@ -686,8 +736,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Jun 2019 20:37:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT01HM0daTzcyQTQ3RzdGT0ZNRkVVV3xDMUEwQ0ZGOUJBQjFFM0ZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group.yaml index 35dabffd582..27a4f651238 100644 --- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group.yaml +++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/latest/recordings/test_resource_group.yaml @@ -1,4 +1,54 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-07T18:15:41Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T18:15:41Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jun 2019 18:15:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created - request: body: null headers: @@ -16,7 +66,7 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: DELETE @@ -30,11 +80,11 @@ interactions: content-length: - '0' date: - - Sat, 25 May 2019 03:47:05 GMT + - Fri, 07 Jun 2019 18:15:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -61,9 +111,50 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Jun 2019 18:16:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n --yes + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: body: string: '' @@ -73,11 +164,11 @@ interactions: content-length: - '0' date: - - Sat, 25 May 2019 03:47:21 GMT + - Fri, 07 Jun 2019 18:16:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -102,9 +193,9 @@ interactions: - -n --yes User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: body: string: '' @@ -114,7 +205,7 @@ interactions: content-length: - '0' date: - - Sat, 25 May 2019 03:47:57 GMT + - Fri, 07 Jun 2019 18:16:30 GMT expires: - '-1' pragma: @@ -141,7 +232,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: HEAD @@ -157,7 +248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:47:58 GMT + - Fri, 07 Jun 2019 18:16:31 GMT expires: - '-1' pragma: @@ -190,7 +281,7 @@ interactions: - -n -l --tag User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -206,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:00 GMT + - Fri, 07 Jun 2019 18:16:33 GMT expires: - '-1' pragma: @@ -216,7 +307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -235,7 +326,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: HEAD @@ -249,7 +340,7 @@ interactions: content-length: - '0' date: - - Sat, 25 May 2019 03:48:00 GMT + - Fri, 07 Jun 2019 18:16:33 GMT expires: - '-1' pragma: @@ -276,7 +367,7 @@ interactions: - -n User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -292,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:01 GMT + - Fri, 07 Jun 2019 18:16:34 GMT expires: - '-1' pragma: @@ -321,7 +412,7 @@ interactions: - --tag User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -337,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:02 GMT + - Fri, 07 Jun 2019 18:16:34 GMT expires: - '-1' pragma: @@ -366,7 +457,7 @@ interactions: - -g --tags User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -382,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:02 GMT + - Fri, 07 Jun 2019 18:16:34 GMT expires: - '-1' pragma: @@ -415,7 +506,7 @@ interactions: - -g --tags User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -431,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:03 GMT + - Fri, 07 Jun 2019 18:16:35 GMT expires: - '-1' pragma: @@ -464,7 +555,7 @@ interactions: - -g --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -480,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:04 GMT + - Fri, 07 Jun 2019 18:16:36 GMT expires: - '-1' pragma: @@ -513,7 +604,7 @@ interactions: - -g --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -530,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:05 GMT + - Fri, 07 Jun 2019 18:16:37 GMT expires: - '-1' pragma: @@ -544,7 +635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -563,7 +654,7 @@ interactions: - -g --set --force-string User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -580,7 +671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:05 GMT + - Fri, 07 Jun 2019 18:16:37 GMT expires: - '-1' pragma: @@ -614,7 +705,7 @@ interactions: - -g --set --force-string User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -631,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 25 May 2019 03:48:07 GMT + - Fri, 07 Jun 2019 18:18:52 GMT expires: - '-1' pragma: @@ -645,8 +736,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Jun 2019 18:18:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0s2WFM0V1BaUUNES09ETkRJNzdGVnwwMjFERUFFNjk1MTVEQ0Y5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/hybrid_2019_03_01/recordings/test_storage_account_service_endpoints.yaml b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/hybrid_2019_03_01/recordings/test_storage_account_service_endpoints.yaml index 68274c5824d..0ab88202d5d 100644 --- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/hybrid_2019_03_01/recordings/test_storage_account_service_endpoints.yaml +++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/hybrid_2019_03_01/recordings/test_storage_account_service_endpoints.yaml @@ -1,4 +1,208 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-07T17:46:49Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:46:49Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jun 2019 17:46:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", + "properties": {"supportsHttpsTrafficOnly": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '125' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --sku + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 07 Jun 2019 17:46:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c43d2c2d-86d9-46b2-b286-7a48ea15e3b4?monitor=true&api-version=2017-10-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c43d2c2d-86d9-46b2-b286-7a48ea15e3b4?monitor=true&api-version=2017-10-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 07 Jun 2019 17:47:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --query -o + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2017-10-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Fri, 07 Jun 2019 17:47:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK - request: body: null headers: @@ -14,14 +218,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-26T07:01:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:46:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:04 GMT + - Fri, 07 Jun 2019 17:47:12 GMT expires: - '-1' pragma: @@ -65,14 +269,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -81,7 +285,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:05 GMT + - Fri, 07 Jun 2019 17:47:12 GMT expires: - '-1' pragma: @@ -116,14 +320,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -132,7 +336,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:06 GMT + - Fri, 07 Jun 2019 17:47:13 GMT expires: - '-1' pragma: @@ -172,14 +376,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -188,7 +392,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:07 GMT + - Fri, 07 Jun 2019 17:47:13 GMT expires: - '-1' pragma: @@ -223,14 +427,14 @@ interactions: - -g -n --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -239,7 +443,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:08 GMT + - Fri, 07 Jun 2019 17:47:13 GMT expires: - '-1' pragma: @@ -279,14 +483,14 @@ interactions: - -g -n --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -295,7 +499,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:09 GMT + - Fri, 07 Jun 2019 17:47:14 GMT expires: - '-1' pragma: @@ -311,7 +515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -330,14 +534,14 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.64 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-26T07:01:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:46:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -346,7 +550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:10 GMT + - Fri, 07 Jun 2019 17:47:15 GMT expires: - '-1' pragma: @@ -381,7 +585,7 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -389,15 +593,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"86277d32-18f4-473f-8671-9c5c99dbd56f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e1c0381c-a191-4993-bcef-6b2c0be2e71e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"1c18bc7d-5af2-4853-9393-b4a0734565cf\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"1a046188-45bc-4fca-b3ae-1e0142309ff4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"86277d32-18f4-473f-8671-9c5c99dbd56f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e1c0381c-a191-4993-bcef-6b2c0be2e71e\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n\ @@ -405,7 +609,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c8125de-0cca-44f3-b995-faf8290ab08e?api-version=2017-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ead568c-e5c2-4335-9b4a-e020ac064312?api-version=2017-10-01 cache-control: - no-cache content-length: @@ -413,7 +617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:11 GMT + - Fri, 07 Jun 2019 17:47:15 GMT expires: - '-1' pragma: @@ -426,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -445,9 +649,9 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c8125de-0cca-44f3-b995-faf8290ab08e?api-version=2017-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ead568c-e5c2-4335-9b4a-e020ac064312?api-version=2017-10-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -459,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:15 GMT + - Fri, 07 Jun 2019 17:47:19 GMT expires: - '-1' pragma: @@ -493,21 +697,21 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1304e0fa-f1d7-4b56-b1da-b607252b06f7\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1c18bc7d-5af2-4853-9393-b4a0734565cf\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"1a046188-45bc-4fca-b3ae-1e0142309ff4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1304e0fa-f1d7-4b56-b1da-b607252b06f7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n\ @@ -521,9 +725,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:15 GMT + - Fri, 07 Jun 2019 17:47:20 GMT etag: - - W/"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef" + - W/"1304e0fa-f1d7-4b56-b1da-b607252b06f7" expires: - '-1' pragma: @@ -557,7 +761,7 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -565,7 +769,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1304e0fa-f1d7-4b56-b1da-b607252b06f7\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ \r\n}" @@ -577,9 +781,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:16 GMT + - Fri, 07 Jun 2019 17:47:20 GMT etag: - - W/"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef" + - W/"1304e0fa-f1d7-4b56-b1da-b607252b06f7" expires: - '-1' pragma: @@ -602,7 +806,7 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": "Microsoft.Storage"}], "provisioningState": "Succeeded"}, "name": "subnet1", - "etag": "W/\\"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef\\""}''' + "etag": "W/\\"1304e0fa-f1d7-4b56-b1da-b607252b06f7\\""}''' headers: Accept: - application/json @@ -620,7 +824,7 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -628,7 +832,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"eee3f6f2-341a-41c8-93d9-317f1de7ccc9\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"99bd545e-1d2a-4660-8598-9ffbe52f07d3\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Updating\",\r\n \"service\"\ @@ -637,7 +841,7 @@ interactions: type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2fe89e70-751e-43ee-b052-6e7f86ae78d7?api-version=2017-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33eb4b60-dc20-46b3-95b9-5a8e0d84d46d?api-version=2017-10-01 cache-control: - no-cache content-length: @@ -645,7 +849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:16 GMT + - Fri, 07 Jun 2019 17:47:21 GMT expires: - '-1' pragma: @@ -681,9 +885,9 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2fe89e70-751e-43ee-b052-6e7f86ae78d7?api-version=2017-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33eb4b60-dc20-46b3-95b9-5a8e0d84d46d?api-version=2017-10-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -695,7 +899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:21 GMT + - Fri, 07 Jun 2019 17:47:24 GMT expires: - '-1' pragma: @@ -729,13 +933,13 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.7.0 Azure-SDK-For-Python AZURECLI/2.0.64 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"c7cc5250-8e64-4519-8889-98e66a29339d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"771b0fdb-0824-42ec-abdd-afb77b248031\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\"\ @@ -750,9 +954,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 26 May 2019 07:02:21 GMT + - Fri, 07 Jun 2019 17:47:25 GMT etag: - - W/"c7cc5250-8e64-4519-8889-98e66a29339d" + - W/"771b0fdb-0824-42ec-abdd-afb77b248031" expires: - '-1' pragma: @@ -786,14 +990,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -802,7 +1006,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:22 GMT + - Fri, 07 Jun 2019 17:47:25 GMT expires: - '-1' pragma: @@ -841,14 +1045,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -857,7 +1061,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:24 GMT + - Fri, 07 Jun 2019 17:47:26 GMT expires: - '-1' pragma: @@ -873,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -892,14 +1096,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -908,7 +1112,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:24 GMT + - Fri, 07 Jun 2019 17:47:26 GMT expires: - '-1' pragma: @@ -947,14 +1151,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -963,7 +1167,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:25 GMT + - Fri, 07 Jun 2019 17:47:27 GMT expires: - '-1' pragma: @@ -979,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -998,14 +1202,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1014,7 +1218,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:25 GMT + - Fri, 07 Jun 2019 17:47:28 GMT expires: - '-1' pragma: @@ -1054,14 +1258,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1070,7 +1274,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:28 GMT + - Fri, 07 Jun 2019 17:47:29 GMT expires: - '-1' pragma: @@ -1105,14 +1309,14 @@ interactions: - -g --account-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1121,7 +1325,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:28 GMT + - Fri, 07 Jun 2019 17:47:30 GMT expires: - '-1' pragma: @@ -1154,14 +1358,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1170,7 +1374,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:30 GMT + - Fri, 07 Jun 2019 17:47:29 GMT expires: - '-1' pragma: @@ -1210,14 +1414,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1226,7 +1430,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:31 GMT + - Fri, 07 Jun 2019 17:47:30 GMT expires: - '-1' pragma: @@ -1242,7 +1446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1261,14 +1465,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1277,7 +1481,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:32 GMT + - Fri, 07 Jun 2019 17:47:31 GMT expires: - '-1' pragma: @@ -1316,14 +1520,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1332,7 +1536,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:34 GMT + - Fri, 07 Jun 2019 17:47:31 GMT expires: - '-1' pragma: @@ -1367,14 +1571,14 @@ interactions: - -g --account-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.64 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2017-10-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-26T07:01:45.9762424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-26T07:01:45.8825428Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:46:53.2392144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:46:53.0985882Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1383,7 +1587,7 @@ interactions: content-type: - application/json date: - - Sun, 26 May 2019 07:02:34 GMT + - Fri, 07 Jun 2019 17:47:33 GMT expires: - '-1' pragma: @@ -1401,4 +1605,51 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Jun 2019 17:47:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNKNlNLT3wzODFEN0JBMUZDNjJBNjlBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_service_endpoints.yaml b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_service_endpoints.yaml index 953b3f91d39..08e23c6f5f4 100644 --- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_service_endpoints.yaml +++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_service_endpoints.yaml @@ -1,4 +1,207 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-07T17:48:56Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:48:56Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jun 2019 17:48:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --sku + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 07 Jun 2019 17:48:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ba089e3d-dd3f-4c08-8370-bbf288e1dea9?monitor=true&api-version=2018-11-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ba089e3d-dd3f-4c08-8370-bbf288e1dea9?monitor=true&api-version=2018-11-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 07 Jun 2019 17:49:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --query -o + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-11-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Fri, 07 Jun 2019 17:49:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK - request: body: null headers: @@ -14,14 +217,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-03T17:13:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:48:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:01 GMT + - Fri, 07 Jun 2019 17:49:18 GMT expires: - '-1' pragma: @@ -64,14 +267,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -80,7 +283,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:02 GMT + - Fri, 07 Jun 2019 17:49:19 GMT expires: - '-1' pragma: @@ -96,7 +299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -115,14 +318,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -131,7 +334,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:04 GMT + - Fri, 07 Jun 2019 17:49:19 GMT expires: - '-1' pragma: @@ -171,14 +374,14 @@ interactions: - -g -n --bypass --default-action User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -187,7 +390,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:05 GMT + - Fri, 07 Jun 2019 17:49:20 GMT expires: - '-1' pragma: @@ -203,7 +406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -222,14 +425,14 @@ interactions: - -g -n --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -238,7 +441,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:05 GMT + - Fri, 07 Jun 2019 17:49:20 GMT expires: - '-1' pragma: @@ -278,14 +481,14 @@ interactions: - -g -n --set User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -294,7 +497,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:07 GMT + - Fri, 07 Jun 2019 17:49:21 GMT expires: - '-1' pragma: @@ -310,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -329,14 +532,14 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-03T17:13:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-07T17:48:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -345,7 +548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:08 GMT + - Fri, 07 Jun 2019 17:49:22 GMT expires: - '-1' pragma: @@ -380,7 +583,7 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -388,15 +591,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"590e4030-596f-4f87-ab8c-6f94e2981c7c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7a522d60-d4b8-4c81-b5b6-e3c36f4a5646\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c9c36149-e4a1-448f-9fe7-d236723cd91b\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"cdf74a77-6499-4674-a3ce-04c24768f235\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"590e4030-596f-4f87-ab8c-6f94e2981c7c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7a522d60-d4b8-4c81-b5b6-e3c36f4a5646\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ @@ -404,7 +607,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5446553f-2a4d-4f50-ac9c-15b171679051?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/149af239-e6b6-4d3b-8238-99c75af1a1f7?api-version=2019-04-01 cache-control: - no-cache content-length: @@ -412,7 +615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:10 GMT + - Fri, 07 Jun 2019 17:49:22 GMT expires: - '-1' pragma: @@ -425,7 +628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -444,9 +647,9 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5446553f-2a4d-4f50-ac9c-15b171679051?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/149af239-e6b6-4d3b-8238-99c75af1a1f7?api-version=2019-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -458,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:13 GMT + - Fri, 07 Jun 2019 17:49:25 GMT expires: - '-1' pragma: @@ -492,21 +695,21 @@ interactions: - -g -n --subnet-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2019-04-01 response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"70b55382-4ff4-4217-a387-2272bc712ef2\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"de0d070f-6df3-4e12-88c8-e2c1df60e2e9\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c9c36149-e4a1-448f-9fe7-d236723cd91b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"cdf74a77-6499-4674-a3ce-04c24768f235\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"70b55382-4ff4-4217-a387-2272bc712ef2\\\"\"\ + ,\r\n \"etag\": \"W/\\\"de0d070f-6df3-4e12-88c8-e2c1df60e2e9\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ @@ -520,9 +723,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:15 GMT + - Fri, 07 Jun 2019 17:49:27 GMT etag: - - W/"70b55382-4ff4-4217-a387-2272bc712ef2" + - W/"de0d070f-6df3-4e12-88c8-e2c1df60e2e9" expires: - '-1' pragma: @@ -556,7 +759,7 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -564,7 +767,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"70b55382-4ff4-4217-a387-2272bc712ef2\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"de0d070f-6df3-4e12-88c8-e2c1df60e2e9\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" @@ -576,9 +779,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:16 GMT + - Fri, 07 Jun 2019 17:49:27 GMT etag: - - W/"70b55382-4ff4-4217-a387-2272bc712ef2" + - W/"de0d070f-6df3-4e12-88c8-e2c1df60e2e9" expires: - '-1' pragma: @@ -601,7 +804,7 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": "Microsoft.Storage"}], "delegations": [], "provisioningState": "Succeeded"}, - "name": "subnet1", "etag": "W/\\"70b55382-4ff4-4217-a387-2272bc712ef2\\""}''' + "name": "subnet1", "etag": "W/\\"de0d070f-6df3-4e12-88c8-e2c1df60e2e9\\""}''' headers: Accept: - application/json @@ -619,7 +822,7 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -627,7 +830,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"0b6bd00c-2681-485e-b5bc-3db1f0cfbbf8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0068d7dd-7784-4ad8-90bf-66b88534bf09\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Updating\",\r\n \"service\"\ @@ -637,7 +840,7 @@ interactions: \n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6d04e9bc-7620-4493-b71b-14c1f0ed4e03?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bef72653-7630-44c5-8d6a-a20011674e73?api-version=2019-04-01 cache-control: - no-cache content-length: @@ -645,7 +848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:17 GMT + - Fri, 07 Jun 2019 17:49:27 GMT expires: - '-1' pragma: @@ -681,9 +884,57 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bef72653-7630-44c5-8d6a-a20011674e73?api-version=2019-04-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jun 2019 17:49:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --service-endpoints + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6d04e9bc-7620-4493-b71b-14c1f0ed4e03?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bef72653-7630-44c5-8d6a-a20011674e73?api-version=2019-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -695,7 +946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:21 GMT + - Fri, 07 Jun 2019 17:49:42 GMT expires: - '-1' pragma: @@ -729,13 +980,13 @@ interactions: - -g --vnet-name -n --service-endpoints User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2019-04-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"08accfbd-899e-42b0-877c-5acdb8f872b5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9006922c-89ed-4a60-90ab-d2d84124e56a\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\"\ @@ -751,9 +1002,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 03 Jun 2019 17:14:22 GMT + - Fri, 07 Jun 2019 17:49:41 GMT etag: - - W/"08accfbd-899e-42b0-877c-5acdb8f872b5" + - W/"9006922c-89ed-4a60-90ab-d2d84124e56a" expires: - '-1' pragma: @@ -787,14 +1038,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -803,7 +1054,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:23 GMT + - Fri, 07 Jun 2019 17:49:42 GMT expires: - '-1' pragma: @@ -842,14 +1093,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -858,7 +1109,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:23 GMT + - Fri, 07 Jun 2019 17:49:43 GMT expires: - '-1' pragma: @@ -874,7 +1125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -893,14 +1144,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -909,7 +1160,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:25 GMT + - Fri, 07 Jun 2019 17:49:43 GMT expires: - '-1' pragma: @@ -948,14 +1199,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -964,7 +1215,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:26 GMT + - Fri, 07 Jun 2019 17:49:44 GMT expires: - '-1' pragma: @@ -980,7 +1231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -999,14 +1250,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1015,7 +1266,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:27 GMT + - Fri, 07 Jun 2019 17:49:45 GMT expires: - '-1' pragma: @@ -1055,14 +1306,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1071,7 +1322,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:29 GMT + - Fri, 07 Jun 2019 17:49:46 GMT expires: - '-1' pragma: @@ -1087,7 +1338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1106,14 +1357,14 @@ interactions: - -g --account-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1122,7 +1373,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:30 GMT + - Fri, 07 Jun 2019 17:49:47 GMT expires: - '-1' pragma: @@ -1155,14 +1406,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1171,7 +1422,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:31 GMT + - Fri, 07 Jun 2019 17:49:47 GMT expires: - '-1' pragma: @@ -1211,14 +1462,14 @@ interactions: - -g --account-name --ip-address User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1227,7 +1478,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:32 GMT + - Fri, 07 Jun 2019 17:49:48 GMT expires: - '-1' pragma: @@ -1243,7 +1494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1262,14 +1513,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1278,7 +1529,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:33 GMT + - Fri, 07 Jun 2019 17:49:49 GMT expires: - '-1' pragma: @@ -1317,14 +1568,14 @@ interactions: - -g --account-name --vnet-name --subnet User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1333,7 +1584,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:35 GMT + - Fri, 07 Jun 2019 17:49:49 GMT expires: - '-1' pragma: @@ -1349,7 +1600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1368,14 +1619,14 @@ interactions: - -g --account-name User-Agent: - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.65 + azure-mgmt-storage/3.3.0 Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-11-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T17:13:42.2543626Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T17:13:42.1606117Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T17:48:59.4900037Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T17:48:59.3649734Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -1384,7 +1635,7 @@ interactions: content-type: - application/json date: - - Mon, 03 Jun 2019 17:14:36 GMT + - Fri, 07 Jun 2019 17:49:50 GMT expires: - '-1' pragma: @@ -1402,4 +1653,51 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Jun 2019 17:49:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNHSTQ0S3w2QzI1RjAyQzM5MjQ4MDFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1