diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py b/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py index ead278033d3..6d59d5690fb 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, AADGraphUserReplacer, ManagedApplicationPreparer) + KeyVaultPreparer, 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 +from .utilities import create_random_name, AADGraphUserReplacer 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 42567ae1eb2..2f04ff278c2 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, GeneralNameReplacer, LargeRequestBodyProcessor, + OAuthRequestResponsesFilter, 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 +from .utilities import find_recording_dir, StorageAccountKeyReplacer, GraphClientPasswordReplacer, GeneralNameReplacer 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()] + self._processors_to_reset = [StorageAccountKeyReplacer(), GraphClientPasswordReplacer()] 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 fb7f382321b..73aaf65b82d 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py @@ -8,14 +8,36 @@ from azure_devtools.scenario_tests import AbstractPreparer, SingleValueReplacer -from .base import execute +from .base import LiveScenarioTest 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(AbstractPreparer, SingleValueReplacer): +class ResourceGroupPreparer(NoTrafficRecordingPreparer, SingleValueReplacer): def __init__(self, name_prefix='clitest.rg', parameter_name='resource_group', parameter_name_for_location='resource_group_location', location='westus', @@ -41,21 +63,22 @@ 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 - execute(self.cli_ctx, template.format(self.location, name)) + self.live_only_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: - execute(self.cli_ctx, 'az group delete --name {} --yes --no-wait'.format(name)) + self.live_only_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(AbstractPreparer, SingleValueReplacer): +class StorageAccountPreparer(NoTrafficRecordingPreparer, 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'): @@ -74,19 +97,25 @@ def create_resource(self, name, **kwargs): if not self.dev_setting_name: template = 'az storage account create -n {} -g {} -l {} --sku {}' - execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) + self.live_only_execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) else: name = self.dev_setting_name - account_key = execute(self.cli_ctx, 'storage account keys list -n {} -g {} --query "[0].value" -otsv' - .format(name, group)).output + 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 + self.test_class_instance.kwargs[self.key] = name - return {self.parameter_name: name, self.parameter_name + '_info': (name, account_key)} + return {self.parameter_name: name, + self.parameter_name + '_info': (name, account_key or StorageAccountKeyReplacer.KEY_REPLACEMENT)} def remove_resource(self, name, **kwargs): if not self.skip_delete and not self.dev_setting_name: group = self._get_resource_group(**kwargs) - execute(self.cli_ctx, 'az storage account delete -n {} -g {} --yes'.format(name, group)) + self.live_only_execute(self.cli_ctx, 'az storage account delete -n {} -g {} --yes'.format(name, group)) def _get_resource_group(self, **kwargs): try: @@ -100,7 +129,7 @@ def _get_resource_group(self, **kwargs): # KeyVault Preparer and its shorthand decorator # pylint: disable=too-many-instance-attributes -class KeyVaultPreparer(AbstractPreparer, SingleValueReplacer): +class KeyVaultPreparer(NoTrafficRecordingPreparer, 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'): @@ -118,7 +147,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 {}' - execute(self.cli_ctx, template.format(name, group, self.location, self.sku)) + self.live_only_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 @@ -127,7 +156,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) - execute(self.cli_ctx, 'az keyvault delete -n {} -g {} --yes'.format(name, group)) + self.live_only_execute(self.cli_ctx, 'az keyvault delete -n {} -g {} --yes'.format(name, group)) def _get_resource_group(self, **kwargs): try: @@ -141,7 +170,7 @@ def _get_resource_group(self, **kwargs): # Role based access control service principal preparer # pylint: disable=too-many-instance-attributes -class RoleBasedServicePrincipalPreparer(AbstractPreparer, SingleValueReplacer): +class RoleBasedServicePrincipalPreparer(NoTrafficRecordingPreparer, 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', @@ -160,10 +189,17 @@ 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 '') - self.result = execute(self.cli_ctx, command).get_output_in_json() + + 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.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['password']} + return {self.parameter_name: name, + self.parameter_password: self.result.get('password') or GraphClientPasswordReplacer.PWD_REPLACEMENT} + 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, @@ -171,13 +207,15 @@ def create_resource(self, name, **kwargs): def remove_resource(self, name, **kwargs): if not self.dev_setting_sp_name: - execute(self.cli_ctx, 'az ad sp delete --id {}'.format(self.result['appId'])) + self.live_only_execute(self.cli_ctx, 'az ad sp delete --id {}'.format(self.result.get('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', @@ -196,7 +234,8 @@ 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 = execute(self.cli_ctx, template.format(name, name, name)).get_output_in_json() + self.result = self.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 @@ -205,32 +244,8 @@ def create_resource(self, name, **kwargs): def remove_resource(self, name, **kwargs): if not self.dev_setting_app_name: - 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) + self.execute(self.cli_ctx, 'az ad app delete --id {}'.format(self.result['appId'])) - 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 944dcd7d202..91751e04382 100644 --- a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py +++ b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py @@ -6,7 +6,9 @@ import os from contextlib import contextmanager -from azure_devtools.scenario_tests import create_random_name as create_random_name_base, RecordingProcessor +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 def create_random_name(prefix='clitest', length=24): @@ -47,11 +49,22 @@ 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.""" - def __init__(self, replacement='veryFakedStorageAccountKey=='): - self._replacement = replacement + KEY_REPLACEMENT = 'veryFakedStorageAccountKey==' + + def __init__(self): self._activated = False self._candidates = [] @@ -69,8 +82,8 @@ def process_request(self, request): # pylint: disable=no-self-use pass for candidate in self._candidates: if request.body: - body_string = str(request.body, 'utf-8') if isinstance(request.body, bytes) else request.body - request.body = body_string.replace(candidate, self._replacement) + body_string = _py3_byte_to_str(request.body) + request.body = body_string.replace(candidate, self.KEY_REPLACEMENT) return request def process_response(self, response): @@ -87,6 +100,101 @@ def process_response(self, response): for candidate in self._candidates: if response['body']['string']: body = response['body']['string'] - response['body']['string'] = str(body, 'utf-8') if isinstance(body, bytes) else body - response['body']['string'] = response['body']['string'].replace(candidate, self._replacement) + 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 + 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 6808bf8809d..a7456502785 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,315 +1,4 @@ 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: @@ -324,51 +13,67 @@ interactions: ParameterSetName: - -l --query 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 + - 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: 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 \"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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '2087' + - '3052' content-type: - application/json date: - - Mon, 15 Apr 2019 22:38:02 GMT + - Sun, 26 May 2019 04:38:08 GMT expires: - '-1' pragma: @@ -401,15 +106,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.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 + - 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 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-04-15T22:37:57Z"},"properties":{"provisioningState":"Succeeded"}}' + 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"}}' headers: cache-control: - no-cache @@ -418,7 +123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Apr 2019 22:38:03 GMT + - Sun, 26 May 2019 04:38:08 GMT expires: - '-1' pragma: @@ -433,76 +138,14 @@ interactions: code: 200 message: OK - 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 \"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: - - '241' - content-type: - - application/json - date: - - Mon, 15 Apr 2019 22:38:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: 'b''b\''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": - {"kubernetesVersion": "1.11.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + body: 'b''{"location": "eastus", "tags": {"scenario_test": ""}, "properties": + {"kubernetesVersion": "1.12.8", "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}}\''''' + test@example.com\\n"}]}}, "servicePrincipalProfile": {"clientId": "http://clitest000002", + "secret": "c2493b92-1af7-4ad0-829d-fe51365540cb"}, "addonProfiles": {}, "enableRBAC": + true}}''' headers: Accept: - application/json @@ -513,34 +156,51 @@ interactions: Connection: - keep-alive Content-Length: - - '1232' + - '1239' 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 + - 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: 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 \"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 }" + 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\ + \ }" 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: - - '241' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:38:38 GMT + - Sun, 26 May 2019 04:38:17 GMT expires: - '-1' pragma: @@ -552,71 +212,60 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: - body: '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}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks wait 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 + - -g -n --created 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 + - 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: PUT + 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.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 }" + 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\ + \ }" 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' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:38:47 GMT + - Sun, 26 May 2019 04:38:18 GMT expires: - '-1' pragma: @@ -625,13 +274,15 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -646,39 +297,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '1941' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:38:48 GMT + - Sun, 26 May 2019 04:38:48 GMT expires: - '-1' pragma: @@ -710,39 +364,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '1941' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:39:18 GMT + - Sun, 26 May 2019 04:39:21 GMT expires: - '-1' pragma: @@ -774,39 +431,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '1941' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:39:48 GMT + - Sun, 26 May 2019 04:39:52 GMT expires: - '-1' pragma: @@ -838,39 +498,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '1941' + - '2017' content-type: - application/json date: - - Mon, 15 Apr 2019 22:40:19 GMT + - Sun, 26 May 2019 04:40:22 GMT expires: - '-1' pragma: @@ -902,39 +565,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:40:49 GMT + - Sun, 26 May 2019 04:40:53 GMT expires: - '-1' pragma: @@ -966,39 +632,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:41:19 GMT + - Sun, 26 May 2019 04:41:23 GMT expires: - '-1' pragma: @@ -1030,39 +699,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:41:51 GMT + - Sun, 26 May 2019 04:41:54 GMT expires: - '-1' pragma: @@ -1094,39 +766,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:42:21 GMT + - Sun, 26 May 2019 04:42:25 GMT expires: - '-1' pragma: @@ -1158,39 +833,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:42:52 GMT + - Sun, 26 May 2019 04:42:56 GMT expires: - '-1' pragma: @@ -1222,39 +900,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:43:22 GMT + - Sun, 26 May 2019 04:43:27 GMT expires: - '-1' pragma: @@ -1286,39 +967,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2002' + - '2078' content-type: - application/json date: - - Mon, 15 Apr 2019 22:43:52 GMT + - Sun, 26 May 2019 04:43:57 GMT expires: - '-1' pragma: @@ -1350,39 +1034,42 @@ interactions: ParameterSetName: - -g -n --created 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2003' + - '2080' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:22 GMT + - Sun, 26 May 2019 04:44:27 GMT expires: - '-1' pragma: @@ -1414,39 +1101,42 @@ interactions: ParameterSetName: - -g -n 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2003' + - '2080' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:24 GMT + - Sun, 26 May 2019 04:44:29 GMT expires: - '-1' pragma: @@ -1478,51 +1168,67 @@ interactions: ParameterSetName: - -l 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 + - 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: 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 \"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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '2087' + - '3052' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:25 GMT + - Sun, 26 May 2019 04:44:29 GMT expires: - '-1' pragma: @@ -1554,51 +1260,67 @@ interactions: ParameterSetName: - -l -o 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 + - 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: 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 \"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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '2087' + - '3052' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:25 GMT + - Sun, 26 May 2019 04:44:30 GMT expires: - '-1' pragma: @@ -1630,30 +1352,30 @@ interactions: ParameterSetName: - -g -n 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 + - 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: 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.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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '614' + - '583' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:26 GMT + - Sun, 26 May 2019 04:44:30 GMT expires: - '-1' pragma: @@ -1685,30 +1407,30 @@ interactions: ParameterSetName: - -g -n --output 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 + - 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: 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.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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '614' + - '583' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:27 GMT + - Sun, 26 May 2019 04:44:32 GMT expires: - '-1' pragma: @@ -1740,39 +1462,42 @@ interactions: ParameterSetName: - -g -n --addons 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 + - 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: 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.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 }" + 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\ + \ }" headers: cache-control: - no-cache content-length: - - '2003' + - '2080' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:28 GMT + - Sun, 26 May 2019 04:44:32 GMT expires: - '-1' pragma: @@ -1791,15 +1516,16 @@ interactions: code: 200 message: OK - request: - 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": + 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": 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 @@ -1810,50 +1536,52 @@ interactions: Connection: - keep-alive Content-Length: - - '1365' + - '1425' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --addons 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 + - 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: 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.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 }" + 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 }" headers: azure-asyncoperation: - - 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 + - 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 cache-control: - no-cache content-length: - - '2194' + - '2270' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:30 GMT + - Sun, 26 May 2019 04:44:36 GMT expires: - '-1' pragma: @@ -1887,24 +1615,23 @@ interactions: ParameterSetName: - -g -n --addons 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 + - 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 - 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 + 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 response: body: - 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 }" + string: "{\n \"name\": \"367ce60a-277a-fb48-b139-128ea18b3a6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:44:36.7400595Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Mon, 15 Apr 2019 22:44:59 GMT + - Sun, 26 May 2019 04:45:07 GMT expires: - '-1' pragma: @@ -1936,40 +1663,24 @@ interactions: ParameterSetName: - -g -n --addons 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 + - 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 - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2019-02-01 + 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 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.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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '2195' + - '170' content-type: - application/json date: - - Mon, 15 Apr 2019 22:45:00 GMT + - Sun, 26 May 2019 04:45:38 GMT expires: - '-1' pragma: @@ -1995,272 +1706,48 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks delete + - aks enable-addons Connection: - keep-alive - Content-Length: - - '0' 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 - 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: '' - 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: - - '126' - content-type: - - application/json - date: - - Mon, 15 Apr 2019 22:45:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - 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:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks 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 + - -g -n --addons 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 + - 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 - 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 + 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\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\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.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 }" headers: cache-control: - no-cache content-length: - - '126' + - '2272' content-type: - application/json date: - - Mon, 15 Apr 2019 22:47:34 GMT + - Sun, 26 May 2019 04:45:38 GMT expires: - '-1' pragma: @@ -2289,43 +1776,46 @@ interactions: - aks delete Connection: - keep-alive + Content-Length: + - '0' 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 + - 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: '' 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: - - '126' - content-type: - - application/json + - '0' date: - - Mon, 15 Apr 2019 22:48:05 GMT + - Sun, 26 May 2019 04:45:40 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: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2340,14 +1830,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2356,7 +1846,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:48:35 GMT + - Sun, 26 May 2019 04:46:11 GMT expires: - '-1' pragma: @@ -2388,14 +1878,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2404,7 +1894,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:49:06 GMT + - Sun, 26 May 2019 04:46:42 GMT expires: - '-1' pragma: @@ -2436,14 +1926,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2452,7 +1942,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:49:37 GMT + - Sun, 26 May 2019 04:47:13 GMT expires: - '-1' pragma: @@ -2484,14 +1974,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2500,7 +1990,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:50:07 GMT + - Sun, 26 May 2019 04:47:43 GMT expires: - '-1' pragma: @@ -2532,14 +2022,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2548,7 +2038,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:50:38 GMT + - Sun, 26 May 2019 04:48:14 GMT expires: - '-1' pragma: @@ -2580,14 +2070,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2596,7 +2086,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:51:08 GMT + - Sun, 26 May 2019 04:48:44 GMT expires: - '-1' pragma: @@ -2628,14 +2118,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2644,7 +2134,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:51:39 GMT + - Sun, 26 May 2019 04:49:17 GMT expires: - '-1' pragma: @@ -2676,14 +2166,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2692,7 +2182,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:52:09 GMT + - Sun, 26 May 2019 04:49:51 GMT expires: - '-1' pragma: @@ -2724,14 +2214,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2740,7 +2230,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:52:40 GMT + - Sun, 26 May 2019 04:50:22 GMT expires: - '-1' pragma: @@ -2772,14 +2262,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2788,7 +2278,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:53:11 GMT + - Sun, 26 May 2019 04:50:52 GMT expires: - '-1' pragma: @@ -2820,14 +2310,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2836,7 +2326,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:53:41 GMT + - Sun, 26 May 2019 04:51:22 GMT expires: - '-1' pragma: @@ -2868,14 +2358,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2884,7 +2374,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:54:11 GMT + - Sun, 26 May 2019 04:51:53 GMT expires: - '-1' pragma: @@ -2916,14 +2406,14 @@ interactions: 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 + - 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 - 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 + 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 response: body: - string: "{\n \"name\": \"9d04e54d-eb69-2e4b-a0ae-d83d36a23fa6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2019-04-15T22:45:03.1785727Z\"\n }" + string: "{\n \"name\": \"10a5a949-c3d1-7348-b93e-b7d77564cfa9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2019-05-26T04:45:41.3806895Z\"\n }" headers: cache-control: - no-cache @@ -2932,7 +2422,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Apr 2019 22:54:42 GMT + - Sun, 26 May 2019 04:52:23 GMT expires: - '-1' pragma: @@ -2964,24 +2454,24 @@ interactions: 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 + - 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 - 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 + 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 response: body: - 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 }" + 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 }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Mon, 15 Apr 2019 22:55:12 GMT + - Sun, 26 May 2019 04:53:54 GMT expires: - '-1' pragma: @@ -3013,443 +2503,37 @@ interactions: ParameterSetName: - -g -n 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 + - 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: 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: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' - under resource group ''clitest000001'' was not found."}}' + string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed\ + \ cluster resource: cliakstest000003 in subscription: 00977cdb-163f-435f-9c32-39ec8ae61f4d,\ + \ resourceGroup: clitest000001.\"\n }" headers: cache-control: - no-cache content-length: - - '180' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 15 Apr 2019 22:55:13 GMT + - Sun, 26 May 2019 04:54:04 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 0e0034e4644..2f4a28c3ecd 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,458 +1,693 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"date": "2019-02-27T23:52:27Z", "product": - "azurecli", "cause": "automation"}}' - 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.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - 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":{"date":"2019-02-27T23:52:27Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['384'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:52:27 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: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [-n --yes] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + 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.64 + 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: ['Wed, 27 Feb 2019 23:52:29 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 26 May 2019 07:01:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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 - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - ParameterSetName: [-n --yes] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] + 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.64 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Wed, 27 Feb 2019 23:52:45 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 26 May 2019 07:02:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] + 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.64 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Wed, 27 Feb 2019 23:53:00 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 26 May 2019 07:02:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] + 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.64 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1lVSUtYUEw2MkJXM0RCUkI0QjQyS3xCOUJEMjgzMDM3QTE5NzcxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Wed, 27 Feb 2019 23:53:15 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 26 May 2019 07:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group exists] - Connection: [keep-alive] - ParameterSetName: [-n] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group exists + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: HEAD 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: ['167'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-failure-cause: [gateway] - status: {code: 404, message: Not Found} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '167' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:33 GMT + expires: + - '-1' + pragma: + - no-cache + 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: '{"location": "westus", "tags": {"c": "", "a": "b"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group create] - Connection: [keep-alive] - Content-Length: ['51'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-n -l --tag] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + body: '{"location": "westus", "tags": {"a": "b", "c": ""}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"c":"","a":"b"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 201, message: Created} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:35 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: [group exists] - Connection: [keep-alive] - ParameterSetName: [-n] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group exists + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: HEAD 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: ['Wed, 27 Feb 2019 23:53:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - status: {code: 204, message: No Content} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 26 May 2019 07:02:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group show] - Connection: [keep-alive] - ParameterSetName: [-n] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"c":"","a":"b"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group list] - Connection: [keep-alive] - ParameterSetName: [--tag] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + ParameterSetName: + - --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 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?$filter=tagname%20eq%20%27a%27%20and%20tagvalue%20eq%20%27b%27&api-version=2018-05-01 response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"c":"","a":"b"},"properties":{"provisioningState":"Succeeded"}}]}'} - headers: - cache-control: [no-cache] - content-length: ['339'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '339' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - ParameterSetName: [-g --tags] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"c":"","a":"b"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"properties": {}, "tags": {}, "location": "westus"}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['52'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-g --tags] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['313'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - 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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - ParameterSetName: [-g --set] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['313'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:19 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"properties": {}, "tags": {"a": "{''k'': ''v''}"}, "location": "westus"}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['69'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-g --set] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {"a": "{''k'': ''v''}"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '69' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"a":"{''k'': - ''v''}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['329'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - 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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '329' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - ParameterSetName: [-g --set --force-string] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"a":"{''k'': - ''v''}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['329'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '329' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"properties": {}, "tags": {"a": "{''k'': ''v''}", "b": "{\"k\":\"v\"}"}, - "location": "westus"}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['91'] - Content-Type: [application/json; charset=utf-8] - ParameterSetName: [-g --set --force-string] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {"a": "{''k'': ''v''}", + "b": "{\"k\":\"v\"}"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '91' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"a":"{''k'': - ''v''}","b":"{\"k\":\"v\"}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['349'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 27 Feb 2019 23:53:21 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [--name --yes --no-wait] - User-Agent: [python/3.5.2 (Windows-10-10.0.17763-SP0) msrest/0.6.2 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.58] - 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: ['Wed, 27 Feb 2019 23:53:22 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT1VETE1FSDNFUldYMlBNVEFNR0xPWnwwNEI4QTMxNDFCNkZGMDQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}","b":"{\"k\":\"v\"}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '349' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 26 May 2019 07:02:45 GMT + expires: + - '-1' + pragma: + - no-cache + 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 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 07805e2c3e8..35dabffd582 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,469 +1,652 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-07-06T20:29:45Z"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group create] - Connection: [keep-alive] - Content-Length: ['110'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - 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":"2018-07-06T20:29:45Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['384'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:29:53 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: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + 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.64 + 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, 06 Jul 2018 20:29:55 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Fri, 06 Jul 2018 20:30:10 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 25 May 2019 03:47:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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 - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] + 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.64 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Fri, 06 Jul 2018 20:30:24 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 25 May 2019 03:47:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] + 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.64 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0hKTkdDUFlHVjQ2V1ZGQ05KUjdJWXwwNEQ4RUM1QzZDMUFFQTdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Fri, 06 Jul 2018 20:30:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 25 May 2019 03:47:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group exists] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group exists + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: HEAD 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: ['167'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-failure-cause: [gateway] - status: {code: 404, message: Not Found} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '167' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:47:58 GMT + expires: + - '-1' + pragma: + - no-cache + 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: '{"location": "westus", "tags": {"a": "b", "c": ""}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group create] - Connection: [keep-alive] - Content-Length: ['51'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:45 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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:00 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: [group exists] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group exists + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: HEAD 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, 06 Jul 2018 20:30:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - status: {code: 204, message: No Content} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 25 May 2019 03:48:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group show + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group list + Connection: + - keep-alive + ParameterSetName: + - --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 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?$filter=tagname%20eq%20%27a%27%20and%20tagvalue%20eq%20%27b%27&api-version=2018-05-01 response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}]}'} - headers: - cache-control: [no-cache] - content-length: ['339'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:46 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '339' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['327'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '327' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: 'b''{"name": "cli_test_rg_scenario000001", "properties": {}, "location": - "westus", "tags": {}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['139'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['313'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:51 GMT'] - expires: ['-1'] - pragma: [no-cache] - 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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['313'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:51 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: 'b''{"name": "cli_test_rg_scenario000001", "properties": {}, "location": - "westus", "tags": {"a": "{\''k\'': \''v\''}"}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['156'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {"a": "{''k'': ''v''}"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '69' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"a":"{''k'': - ''v''}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['329'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:52 GMT'] - expires: ['-1'] - pragma: [no-cache] - 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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '329' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + ParameterSetName: + - -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 + accept-language: + - en-US method: GET 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":{"a":"{''k'': - ''v''}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['329'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:52 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '329' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: 'b''{"name": "cli_test_rg_scenario000001", "properties": {}, "location": - "westus", "tags": {"a": "{\''k\'': \''v\''}", "b": "{\\"k\\":\\"v\\"}"}}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group update] - Connection: [keep-alive] - Content-Length: ['178'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - accept-language: [en-US] + body: '{"properties": {}, "location": "westus", "tags": {"a": "{''k'': ''v''}", + "b": "{\"k\":\"v\"}"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group update + Connection: + - keep-alive + Content-Length: + - '91' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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":{"a":"{''k'': - ''v''}","b":"{\"k\":\"v\"}"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['349'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 06 Jul 2018 20:30:54 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.1 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.31 resourcemanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.42] - 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, 06 Jul 2018 20:30:54 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT042MkFFNTVLRUdBV0tNN0VRNUNLVnxFNjlBRDAyNkRBNUQ5MjcwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"{''k'': + ''v''}","b":"{\"k\":\"v\"}"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '349' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 25 May 2019 03:48:07 GMT + expires: + - '-1' + pragma: + - no-cache + 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 version: 1 diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/recordings/test_graph_app_cred_e2e.yaml b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/recordings/test_graph_app_cred_e2e.yaml index 059c6f5833e..8c90e3e0632 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/recordings/test_graph_app_cred_e2e.yaml +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/recordings/test_graph_app_cred_e2e.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --name --skip-assignment User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET @@ -34,19 +34,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:52 GMT + - Sun, 26 May 2019 04:21:23 GMT duration: - - '586408' + - '628801' expires: - '-1' ocp-aad-diagnostics-server-name: - - 9RY9kHjIF0sEXCnKZC1J9QU6hhbta/WWZ84XWn9UNrA= + - hBrSXgYT6AiW34OnRqqllTrcBhIOEaEk4E+/a+pb/0s= ocp-aad-session-key: - - bkUGsNj7gGlHTqKVeMvjFfH14Mu2JJbL16gNr0MiiqubRcD1ZHkLikbNaus7wQa7iQT-TibjuOvngobj_4V_42FQWa4rD5VADRmXyv9PmBvrfoOMOYuBMGwo1eTTaHRZ0tJvtZnFAJcrLC846akWWw.QwKP6gDde-npVL00m5vXiWoSrIVLboYDv1ANLcSMPGk + - zhpCE9xsnqp6ut4uUlv3MCYwLm4aw2NYkbzAwwUeTVvwpQKmWtICpQ3edEkdGckj4ZqQ_HKuo4obBismt_5-PKZ7uCYMMtam8K-58rdK4YNCim5JfIgZ7PulER7UGRjMrhr_402Ib2Jq3VWuJXPV8w.zmlG9Uj3_oPbd2Bo5IJAs7H7yCyffg9FCOjjMi7xjyU pragma: - no-cache request-id: - - 16cce165-584d-46a8-b98b-a47c8e9cb96e + - 3ec68f63-5fd9-4664-a137-9165b83431f2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -72,8 +72,8 @@ interactions: ParameterSetName: - --name --skip-assignment User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET @@ -93,19 +93,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:52 GMT + - Sun, 26 May 2019 04:21:23 GMT duration: - - '519169' + - '685477' expires: - '-1' ocp-aad-diagnostics-server-name: - - QcSfagiuMZ8udXU0pxMb2tb2BoM4+qRFHGLcFMiCX8A= + - USO0vXsiH/WugU0+xVoguNv4Wxgbvvn8Zb8qUwfOkVw= ocp-aad-session-key: - - 3NM2U5NLJpwR_J9AVE4z5muM-B3J8K5SzFEiL8Ppuomeo_HPhnOpo_FWWyWoCcnutwZs_dEkXiekXDQwXKkz37kE77KinjjKSmQyNthACPzg2Vg4aEKlg33s9l4qODoLJsnZSN2dESA8xFALwidS5g.-JBLIPFjGThhuZv5u-fMlg0cgRjaTBtk3UUlm0U6IC8 + - 0lUX3OcH3ISJWN9FilmWNAtspIItBT1GO18o3HcbxvFkq1dgEk57uzJFRdLzByrEnee1OswkUXn5YoXDMGo6aVsCO6WWK9hZjlYdwHCN_2O-Qjm_YbbanNclvCUEoFq2FcxYwahYCIEc_dOMgzG1RA.WQSiKswjBCKJa38kEPpySUPa7qjPEvx7jny08V91CuE pragma: - no-cache request-id: - - 09a7c169-3386-4d62-898f-bf638e43739d + - ea001786-6d5f-4ada-89e8-374ea6f4fe8d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -118,11 +118,11 @@ interactions: code: 200 message: OK - request: - body: 'b''{"availableToOtherTenants": false, "homepage": "https://cli-app-000001", - "passwordCredentials": [{"startDate": "2019-04-16T22:56:52.884002Z", "endDate": - "2020-04-16T22:56:52.884002Z", "keyId": "c044ce1c-430d-4491-a95e-547c67a4827b", - "value": "93305e36-7fe0-4674-9ec3-40e2109a8e0b", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], - "displayName": "cli-app-000001", "identifierUris": ["http://cli-app-000001"]}''' + body: '{"availableToOtherTenants": false, "homepage": "https://cli-app-000001", + "passwordCredentials": [{"startDate": "2019-05-26T04:21:22.418428Z", "endDate": + "2020-05-26T04:21:22.418428Z", "keyId": "498729b3-2ef5-467a-99b9-418ad1153bdb", + "value": "ReplacedSPPassword123*", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], + "displayName": "cli-app-000001", "identifierUris": ["http://cli-app-000001"]}' headers: Accept: - application/json @@ -139,47 +139,69 @@ interactions: ParameterSetName: - --name --skip-assignment User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; - charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", + "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", + "objectId": "ee36666c-68da-4196-ae4f-1a38956a777c", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "6fef4e8f-554d-473b-8fa8-35cc86855b23", + "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": + false, "displayName": "cli-app-000001", "errorUrl": null, "groupMembershipClaims": + null, "homepage": "https://cli-app-000001", "identifierUris": ["http://cli-app-000001"], + "informationalUrls": {"termsOfService": null, "support": null, "privacy": + null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": + [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": + "directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo", + "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo", + "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, + "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": + "Allow the application to access cli-app-000001 on behalf of the signed-in + user.", "adminConsentDisplayName": "Access cli-app-000001", "id": "4ee149fc-824e-40f0-8df7-01af9a902dc5", + "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application + to access cli-app-000001 on your behalf.", "userConsentDisplayName": "Access + cli-app-000001", "value": "user_impersonation"}], "oauth2RequirePostResponse": + false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": + {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": + [{"customKeyIdentifier": "//5yAGIAYQBjAA==", "endDate": "2020-05-26T04:21:22.418428Z", + "keyId": "498729b3-2ef5-467a-99b9-418ad1153bdb", "startDate": "2019-05-26T04:21:22.418428Z", + "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": + "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": + [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": + "AzureADMyOrg", "tokenEncryptionKeyId": null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2282' + - '2279' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:52 GMT + - Sun, 26 May 2019 04:21:24 GMT duration: - - '2548785' + - '7060584' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - K2ZEp5JFzjLS8X+ERXVqxvR0agNqqe7QIkfVrc8aXxg= + - ohcYABmqp+jn/aEb/sdEEw2xLJO30rLgM0J/8tIjvMU= ocp-aad-session-key: - - jIWoOMpjvLnxGI98khCkZj1f-9qmtfouVP_uWHUUENEBVTUJzaFRv_iVsf1RngUa10PWrlBiQRRvfz-MN53JexSG_MjXsDr8fSn6dUakuG8QOIIX6ZvjfafTrox-keKJTbw2yrEhflLwdqWCKZVqGw.LaQWWUY-J-ExGRixbEGWbntfdYJuL2omYQxbix-_JXM + - nkjSbU4sXvOkfnkmRtGBG9sGbrD_9zSNJT3D6U5DDhxZVLqfkFT8rXScWyrGbww0AFXFbIQ3bHMeVXdYoWdQo7s0HUH99Y2-i7-5F6OKOy4kfGBhfdyQ2riMk-vk6DhDrFn-UT9RTt1cn4o7Hmm33w.EQwiTxibiMi0BDGoTGwW4WgQ1EmELAfegVxXULL9yhU pragma: - no-cache request-id: - - 2478f669-2aa8-4e79-bea4-70db96e9a6e8 + - 708073ec-a99c-4aa8-a1e1-361ff6315741 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -192,7 +214,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "6b4b7e52-4118-487a-9226-06e2546e6ce8"}' + body: '{"accountEnabled": "True", "appId": "6fef4e8f-554d-473b-8fa8-35cc86855b23"}' headers: Accept: - application/json @@ -209,46 +231,46 @@ interactions: ParameterSetName: - --name --skip-assignment User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["6b4b7e52-4118-487a-9226-06e2546e6ce8","http://cli-app-000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["6fef4e8f-554d-473b-8fa8-35cc86855b23","http://cli-app-000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:53 GMT + - Sun, 26 May 2019 04:21:24 GMT duration: - - '1686591' + - '4141947' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/c9e80265-8840-41b7-9715-f3bab7d375a2/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/0f9788ca-fe86-46a9-8250-523c231ef304/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - PWJF5MXsNJeXfk2GpX0VavQ33Q7BBlAFQ1PBOgmVl+Y= + - hBrSXgYT6AiW34OnRqqllTrcBhIOEaEk4E+/a+pb/0s= ocp-aad-session-key: - - BxNIL_oFCTNboQxzpzRmseS73FO01BIYCqO-5xE0HLM0mpgzEE9bkvlsFb2CnBBqGZ7o_gqXHHIj5vP6vANy9Yg9gX1boGI5IUEDnCOZ0wF5By1OUtUe6PuZ_9S3O2Lv7q2uLoOfzFL8GQ1t-U-IPA.ZMRR3IufhWZ19IoeBvNnUwMxiBH9XQ7ZbzLeKvZYR5E + - VX7Lapn6WDVXubKStbGj2B6P3Vuk1_tDunL5wDIYhpQLinazExm_QYziOtBcGhz0WRXDQe8mvUOMdvcwuV8E-1YPtAMKwBDd0S1x-z9Jsu-KAeDvEJfl11aPBwNmVJ8vIyQne0eYwWLp2I_ipTVEIw.kzl9QqP0vzb6sFMuo150wa3SWK36MwDhBKphFMJYIAg pragma: - no-cache request-id: - - 246013de-187f-480a-997a-18bb4f0e4c51 + - 369458db-5a8f-4ab3-8b92-c775c0f98e3e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -274,44 +296,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:53 GMT + - Sun, 26 May 2019 04:21:25 GMT duration: - - '540020' + - '2335274' expires: - '-1' ocp-aad-diagnostics-server-name: - - TJe6MFynSFyAmJNhaN8aNaZ14HLvl6p1KI20CCDX1+8= + - FbAahKj+CAgBE9nDxnX/a9xy4bKzwpDul27qCyangJw= ocp-aad-session-key: - - kEgGoq14tx_vA5SAZdZ60zlg2UVfOCutcVPbnZqzwxc90Z_khk8wKppzqkNIFV3J-hxp32poRI7I9hwQsbid6sG1HVvMncpvJhotOFeyZKJfKu5m7UiV2cZbUijcfSNOGK1kWKb9aPb0IXdk-RJaMw.k-3DGVj5VMMEF96y8wmcDROIWbrXyUVNnoUnQQHMAfI + - mNDCXluwRMJSmPNsL9oOj7XMXVS0YDBIiyGxosMCfdtxpDaU0qlMT4lIRCjHnRIAIrtoLFk96V-QQyP5Ocx74OJrIaNCU4FHPcI-kdGwljOZ6ZSvOuiwwnMAss21aZ2118SVvU-qm8u5kh_E6NYzoA.C6PW_wm8M4yVIpMu-CUHCpMJPbIoCf6L98X8R28yX14 pragma: - no-cache request-id: - - 8c8a6d36-f9fc-465c-b45d-1a54dae524a3 + - 6b0ad766-a953-43b0-8ec5-60fc80778b32 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -337,44 +359,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:53 GMT + - Sun, 26 May 2019 04:21:24 GMT duration: - - '559670' + - '735185' expires: - '-1' ocp-aad-diagnostics-server-name: - - tAfU859m9TMv99RRajlEbUsi/5BnvcvCFalsXAVDmG0= + - rM1KdcCuqoQ1CDuAZFk7Kx6C9y26eNQPriKUdQHzxw8= ocp-aad-session-key: - - GrI7KShnn2NpONoxF9MHPrlx9eWaCC8Wb4JBHQEBSdXgxfw8lYlAYP6_BD5_-l0UBWzGYb7cRRR7i4_ojyfusCvEiUS9ruG1LAAfkLOl5ndqZ03M9OL-z7vgoP4iRT73zSMnh0nE62iLL9kK-UxfvQ.XjCvgfdOvseUwqWQ7tSdLOrhdX2LasMoBttBp11tOVQ + - 7Fmj4vBeo2UoVgD6MT4o4VxLSIDUhEfIjx3Cmx12e3bDUAopmghK1AYSv8oqVCPkM1jJtw-CniU2YSe2XXBArhQ8Cv66ldMxcg6GZAx9Q29uUNmCVHpgJVhH0Pshfe7j2Twyz9JMnCGZQvuHBwQIJQ.lchq5n5zlQIcZa8jJ5ywV4Yqb5G-uiv8zytIw9DuNvU pragma: - no-cache request-id: - - 158164a2-c634-4ea9-a0c2-86f3439cc5ee + - 5c55ff86-6fb0-4ad3-9c9a-f9d6df7789bf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -400,44 +422,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:53 GMT + - Sun, 26 May 2019 04:21:25 GMT duration: - - '578323' + - '848098' expires: - '-1' ocp-aad-diagnostics-server-name: - - sKHAZBgGw8ZD+gPJGLEoUnxY5pfwvBzhG5jUW8+JW0w= + - FbAahKj+CAgBE9nDxnX/a9xy4bKzwpDul27qCyangJw= ocp-aad-session-key: - - JvtCOJMOTFuVINtzl_LmCRm2vuLjl6D8ihKR2ZPjM89cOr30WJn7YGI6p4qJj7ebd8kX9R4LFy3X4FQGQPDpBrLGJcO-grYmn5M2FshjlUC9L9qa2kKS5dqFHdgnJWCxeDO-QnzGPuQwYvjrydyLHg.4hJFfBkDwzSyiPCQIrSZH__GdEWBjYCYgjrft83YGzk + - pwlBa8nImdBr_FPeHjW10Ha2nd2b84pYIlga-UoYEm7QnbH-i4EBwe5J1PytaPhuTxQBz5wsu2_P1BtHTMYVBuCHkLoOCNfWpjgxCjL_8zZTAGfvSHeg8I0Ygs5UX68S-_Q_txB4CGkwh3FO7_MI1g.B5EFDPsD7Dd96UdgyZMgVoxz4ns2ByBJeop2ik9lelU pragma: - no-cache request-id: - - e48749f8-1dc5-4c2c-9aa7-4bac3ac4cd89 + - 52427397-6a18-427f-8d81-5ad56729712e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -463,15 +485,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -484,19 +506,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:53 GMT + - Sun, 26 May 2019 04:21:26 GMT duration: - - '580581' + - '708771' expires: - '-1' ocp-aad-diagnostics-server-name: - - nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk= + - r0o8Zfv+/EsfSzvffV1oL1MCccQ68EumyGGwG7/SNv8= ocp-aad-session-key: - - NxVS9ISVenB_0SI4dPPvI2-1z7lqFmWdLmjIQBmJ0We0rBZ_rmbQKdvSADO_o2S8JP_rlyZoq3Zexpo2Qf8b9gG0tBs9DCOMI9vumwGxVnQjcqbdSyKrpNEwmnc96WmOSUEQaIEdo7RAtAIgnogkfw.TDfVh1ZN-5REXZ67MgCYHvChb3F9lAapOaHhyh9sSOc + - Bg5l5j22ZWLfyRI3Xj7xMAgSPkqHo9CgpWYnWkVPIa5e1RfXATPpnRo1Cz-gsFxb4xd6gMH8HLFtPyOMwl4nu7m-Z60bEiHeo_eLAicNvDulm-0qTELzRvF7OT1bkwfBs5BGJt2XW9_Xyss6wu2sug.3qWVWbd_-j945FnzoMyeFDzzWT-utGAiUnNhDtGKeFg pragma: - no-cache request-id: - - 26a6484a-6a4e-488d-b9e6-61b8ef8804a6 + - e66b5681-d088-4352-a34d-24a2e2b9d1b2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -522,44 +544,44 @@ interactions: ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli-app-000001%27&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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:54 GMT + - Sun, 26 May 2019 04:21:26 GMT duration: - - '679504' + - '3116298' expires: - '-1' ocp-aad-diagnostics-server-name: - - PWJF5MXsNJeXfk2GpX0VavQ33Q7BBlAFQ1PBOgmVl+Y= + - 2gCJyEullf37VKgfupb1dpGiYlGUN8HjqZHuUwtlts8= ocp-aad-session-key: - - ZaUVxei7f7IdSXhMwC2BmquAzjAlD52bJjEjebGP0-Ea-XhkDnFjxF6YpqeSwdWwzP7yDP-H26slm52n0fkHUPnadyYXC_vzxP-qQ-owOB49NR7eCfJYgTWs7i-wu_7ve-xxW_wzqSOzXyl7fSKqVw.MUwJGuxE9ncbbM7X7LQyAqh_OG-bPDVCMJXKgfmv2Aw + - -ky0Im_d1T99umg4hVQOQZFfzUPdrgGJE5_OJxEIUGl0YbDXChawblG1YEYHbQfHLLc4Zg8ZGI-qwadNrsuOSqYUXTeopO2_bleOfz6i7IqPVQggi_po1RtasdCaf5ugX0Q45_GRKSpcggo7i-f-Ng.pGWJsjaQpl9Ze-iAhDZwAynyFhge_PqaMx6liFcE7-w pragma: - no-cache request-id: - - f7f08fa2-4a0d-416a-aeb1-68107fa1d3a3 + - 16111f39-b32b-4b8a-824e-9c3f10eb6f45 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -585,12 +607,12 @@ interactions: ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -606,19 +628,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:54 GMT + - Sun, 26 May 2019 04:21:26 GMT duration: - - '485818' + - '714619' expires: - '-1' ocp-aad-diagnostics-server-name: - - VRduinh48wLsWX4gv475GCgG1fPJPOTtSGWFaOBDTQM= + - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= ocp-aad-session-key: - - spvIFLdhQS17x8n2HL1jXoj-cfByZEl6WVsqYNC9cYtvLsu4JaN3FyopPkGiTQanVvMJxXFf--BuxjwnB9dnvngbfKxqO_11naXatEKhqSbgUzfxeEjN6uC7Ef5oDoFNsTGw37rs_9Ul20txmOy3MA.OJh6-WJ7N_32gmqsLtSMmyUqaRr6eIY__-PEem4AcxQ + - jhfccqEDxzVBlEdUDktUuwLuyi9QFGZqVjl8NQDafeApM62mIxFJW2hMABtWQJJf9xwDyk-aoGzJij3QKpbrcRns4Pxz278uz7jNVUqVfdiUAcXo3u0xehedcGuvM9pezQoP4iYv9qPrsD07XWeNFA.wbH4IzqxTxGPcMuubUqOZtJTu60bkFXiVYrDsVDYnac pragma: - no-cache request-id: - - 0ea9ebe9-0e7a-4c44-aebb-602b01fa954a + - c842ddb6-d359-440f-b553-b88d9ebd2453 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -644,44 +666,44 @@ interactions: ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27&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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:54 GMT + - Sun, 26 May 2019 04:21:27 GMT duration: - - '538610' + - '867538' expires: - '-1' ocp-aad-diagnostics-server-name: - - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= + - uHyVfaWnz1wZ+Kit9M+ndgirzc7H4vyg8f/Bx6SxLLI= ocp-aad-session-key: - - _22HBPHtt6gc_ZQuvRMg0ysH18-wQ9sNAhlB8rjPKi4yVqN6mQJkSFefueAp2o0MXML1UKbfoHxPbYK2g4OTQi1Tk5uW_UKo8cTvgITFE0A1l-zXU2FvYUJnuDmRsUBGUwcCde-RctDJO6CCmR9KfQ.3bxPkd_oWy1vw9tN97KkSKUKdoiR8I3jbzw48frp5_U + - 8BYDlV2kZkbP56g0cYnKW7-N6SFcIlkPSSW0EBhn6uJ0zH4B-0ITE8p-hfSELQoACgLZ63ehbV7F-IdJjo2L1vdXV-sbOH1ElWPLN_qYmC3jW6YqNaXLTzpe-hVpUriaN2ADJW7IbQ9kx8t7T3gVjQ.IUysvk5u6C-z0yogR6isLSCsC7xbKx0jDzybkhBzB5o pragma: - no-cache request-id: - - 9f6a55f9-2a68-4b6c-b7f4-32cb5b06a850 + - a6029f91-0760-4c5e-9f8f-73cda44b2745 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -707,44 +729,44 @@ interactions: ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2196' + - '2193' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:54 GMT + - Sun, 26 May 2019 04:21:26 GMT duration: - - '538206' + - '713373' expires: - '-1' ocp-aad-diagnostics-server-name: - - QYQhfzFNSSm8b00C1v998memm10SZTVuigsYyWtHlfQ= + - MH0R8mLEKNJg37JupYky5a6a5nCUFLw87urdg3u3YYE= ocp-aad-session-key: - - QsSfIpxNz1Qu4AXm4QTupT-XVS_MlAc-k9KDRt0KmL37iT1lIrQmHcwIsaWleAfuqyXnrbxXV56Nod7jMHg6Iiacoeq-vkbIJuVmcL5L8-M5As2mRjzClODQ7Yq4w-O0PW-EvUEy5DyqEONxC01SVw.Hx96qU_a7WqLI4tcP96dCsk_F_4Rdwo2pIMnr1X5NCk + - mbw68F3t2IkZ0S1OVfSbcOPfToRA1FvaWdB5a3lcJafMLcvE7KAjxsnzopKmpgJPuvAEPq4n1gu2nXW01mhbJOwzoajq_TGff0C1MZa2FIMacto9KfmBWASJwQafjKSotx4eESMkhIxGn4L7pYoJnA.zl_RVdXpcV274TNxOEFaMDvSVeLPsvCngwM49ZuxDNY pragma: - no-cache request-id: - - 4c717a27-8fd8-423b-a16c-654cd203b446 + - e326cb81-be14-4204-9375-6dc73abb68d9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -770,15 +792,15 @@ interactions: ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -791,19 +813,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:54 GMT + - Sun, 26 May 2019 04:21:27 GMT duration: - - '609425' + - '698683' expires: - '-1' ocp-aad-diagnostics-server-name: - - 5uQDuWNQfMZyayPDO2FzgKiYgsjpZMmhw8GRP+g4gGA= + - K6rldxMxky7aVh9vRPlXWYskRYxAISeuZjxkHfljrVA= ocp-aad-session-key: - - 6KYs14rrBuOXGrKNnA1Hg0ttzDlsdyLAur4KPsFD_0jQRsUK0tuellz5v_j3eOUZ1OwlKlF4p67BMW5Br5cdZ_jhvjVMA_mr_GxfN1c8ult3D9V1ukOktCZSBt-jl-MCYdV3ZcqjX7DkSlvS6DXkog.Z9vpb5g-5i8eHLjyXIbbPHWh4heqUlNXcQz1cwpMOVQ + - NHKNmIHMVBxAPmzDNmCfEcd4qTUA_qUP4uCpbY48UYZNyOl4GTymxE3CPONy2itlgqGU09Zchvbs498n77XQDORAIxZXPRaRv5Y_Y7F-ywZMtsN7Xssu69bC5t6qn4WHIErZPSZw4b7drLq74TDc2A.qOpX2dU4RguLA5rrjP73x-KJqd2aej2gvk-4jjoZvFw pragma: - no-cache request-id: - - 25b83bac-dc78-4277-a46a-cc1eee0af740 + - a2d25a8a-494e-4006-a585-28976afa8f90 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -816,11 +838,11 @@ interactions: code: 200 message: OK - request: - body: '{"passwordCredentials": [{"startDate": "2019-04-16T22:56:52.884002Z", "endDate": - "2020-04-16T22:56:52.884002Z", "keyId": "c044ce1c-430d-4491-a95e-547c67a4827b", - "customKeyIdentifier": "//5yAGIAYQBjAA=="}, {"startDate": "2019-04-16T22:56:54.728004Z", - "endDate": "2020-04-16T22:56:54.728004Z", "keyId": "3eca4c36-5854-456f-856b-e396538c374c", - "value": "verySecert123", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}]}' + body: '{"passwordCredentials": [{"startDate": "2019-05-26T04:21:22.418428Z", "endDate": + "2020-05-26T04:21:22.418428Z", "keyId": "498729b3-2ef5-467a-99b9-418ad1153bdb", + "customKeyIdentifier": "//5yAGIAYQBjAA=="}, {"startDate": "2019-05-26T04:21:25.369574Z", + "endDate": "2020-05-26T04:21:25.369574Z", "keyId": "342b819f-dae3-4a2e-b848-6390482d249f", + "value": "verysecretpwd123*", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}]}' headers: Accept: - application/json @@ -831,18 +853,18 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '423' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -852,19 +874,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:56:55 GMT + - Sun, 26 May 2019 04:21:28 GMT duration: - - '2610546' + - '7256664' expires: - '-1' ocp-aad-diagnostics-server-name: - - MjPAJVvgC3key9HyT1tst0r01pKZJnpyPQ4YiB+LaOA= + - YF0m9VfRaICKZ7BaPBWJYnZAznG+rGxvI3UhMCQZVCo= ocp-aad-session-key: - - -xKP0QkXYf6zDzlXEXBz5YVxO2b-02K2Jztht3EQsOStCZt2TDcKiXUdGBhOeXJz9GIyyU04K9OqYytsL3uynej_RLhHcySVeM0FZeY79mfbeAVVRIRJDHo7wkO2XD5N4eZwZqj1c3lZ1w85FLhmHA.9W2B3DQlY0FNqUPQFNMBf6b2idNS4m4hp65zZmEDJGo + - iPv37LasfUroNATZQDcnS8aXEdavfqjHXmerwVAtUgYxhHzsGPF_93BpEHB29fsOdDPLQcCGJbZdtcPjNQ8Fx_vC8QZ4ciRhO6Io3ONxvyn8Aj9fY3Ea9IBEdOy37zNWxTU1KBriG7HlOXd57ghSSg.mjCy0UHWDQZeQJxa2JnCWdSqyXhk7_xzmLiIr1hbwr0 pragma: - no-cache request-id: - - 6a763459-035d-4ba7-a79f-6764df725136 + - 016a74b5-44dc-4224-94cc-0bb3fc0655b4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -890,44 +912,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:55 GMT + - Sun, 26 May 2019 04:21:27 GMT duration: - - '601009' + - '877512' expires: - '-1' ocp-aad-diagnostics-server-name: - - 9RY9kHjIF0sEXCnKZC1J9QU6hhbta/WWZ84XWn9UNrA= + - bjwfCHqIrtGB+z8zTamk9qnExmWtx2/qGwNbbFSoSzc= ocp-aad-session-key: - - gQ8sb2O6feMsE7oFjJpg9YW-ZBEdNerD0KUWWx13GMn6QAxG8hXTWpCNHbBH-9k0kQ_cJCS3H4drfh2BfJ7004sb3VoprI-8F-L4Y7fvLTDXIV5tIBGwGJO7_1oijcLbv6h-qgb9Qt2YHkWRhmhq_g.Xs6oLoq4Ed8Q2Z0FIn3aXQewxrGyJDL9mYp9o3a4BuQ + - 1jYqsYCAnlVCxSkZuOEdOgmXZEeGUPfTW0ddIGsr4nG8f_LcRfXkjEiFInlIi40bdesnZOkZmKqhImObuW98upIU32fjDUL9HsBkO2EUUXWQvktBbs3FfO7--zwd5QFyKp3jok5PNLmb9wpBvDjrqQ.I6jmenDoNAybWg9nHocsW70QgQzNLvAdL54wzJG5-zc pragma: - no-cache request-id: - - ca7c5586-6f8b-46b7-a193-bf684b0f9a01 + - e28de7ac-1c7b-4672-a2b8-3ea11b7a6bb5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -953,44 +975,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:56 GMT + - Sun, 26 May 2019 04:21:29 GMT duration: - - '622215' + - '2461220' expires: - '-1' ocp-aad-diagnostics-server-name: - - ObADpVQOrMtGTj6DP71zqpcUOzkjrX9Nv84OPbrwK/c= + - s2UwUVi+htM/n2YkhPwXRPeUZqg0DtftoAt5dzpH0b8= ocp-aad-session-key: - - cM7tLwM5OODec98X3ZJnmfZ0fH3Xv3Af5mwtLK_57wmxh6Nqssk1Rw9oxnBp5JeAW8oslfnkWEeDq8zjwZtJL_pN7cRrjas8unf7pN0RqTmJMUL6HMRHyEQbgJcIdfp8qIJioOTybP3BaO48x1z47g.nCPWL4YybEFcOXtNPuT9QYANdIVbCzvsehg8S2IOXDQ + - -f4JX3A2Rq2cD9ofOLrb41Q0PYzD6IHE4BmI0jb1lzjjKlc5jraBfH0hRR-3_6VFYlJpp0t5a7J3AOrEmOVBBMVzLgIvBNkwnoXuDejJf94p9Cl5ETpA_a_2UtDmsTtNjkJ4ku_lJ6NyLWFZcqKolQ.QtsS8LrFmUGrzjGC4nLWVyM1TwW5WBfnd9C_ILOXIno pragma: - no-cache request-id: - - 7e754669-4c63-4758-af9c-1502234ef6c8 + - b5afec23-b75a-415e-8c48-df0d2556c117 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1016,44 +1038,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2392' + - '2389' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:56 GMT + - Sun, 26 May 2019 04:21:28 GMT duration: - - '625030' + - '886425' expires: - '-1' ocp-aad-diagnostics-server-name: - - EditZjTBaEYCrvrHgtCp7VwlKGMxwmW6BfXNDuF3W+4= + - 2Gv1gQSfiKJpA3rt4Mi13yQYs8l/cSGK1elzeDUE/p8= ocp-aad-session-key: - - mkGHY08KvRu4sOPBtGm5NI31LI21d5JvfibMPBwZLeSrYaTlwcv_d8Lg95_NgThaTgxBBvUwaW6AnekSMLRJqn1X6lWUnPEN2_eemUllRLw7mNhNmF9dq0KMqCdo4hxXVWQHl2tUA6kdsoYQCi4bsQ.SuU60bJ467FglYm88WJAS1i-71JLMcdqSVKPdD6xOTo + - 7wFMDAnVa4Uxfzf2bVKTNkkPtkyIDQcaxPM3P-DxgORPFDI5tG77qcUafuRdX5Zkm5oVJ3fAvm1jYdxNluqH9BDUL1qTRfUPU7QNtRnsz02ZFBJSLojKEa4QdwkHSdIgbJmdSYBFQvrzlSU--z2EHA.6ZOcqqqW71jg6HiNmLABl-FwfNknnCfH4OTPAc3mONg pragma: - no-cache request-id: - - 0ae48b8a-2365-465d-9faa-b71510acbb09 + - f7a3e793-9c1e-43bb-8315-325fb82079bc strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1079,15 +1101,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -1100,19 +1122,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:56 GMT + - Sun, 26 May 2019 04:21:28 GMT duration: - - '526655' + - '745554' expires: - '-1' ocp-aad-diagnostics-server-name: - - gXfFarcv2ysN8TtqVPgD1PYEnzY+oOLIPXpP5S4Cj3o= + - oNrsfdz3Fhte7wfqy+uUhdb2Yij4mN6MnViek/b/vco= ocp-aad-session-key: - - Bm-O6bmLRi9sM1Z56H0L9Z9hcFNBAsBIcbyoFBYwMiv1fKv8vHAqXc5UzzZf7LsI-gr1vLQ8BWZE1QRDw3TEU9iNPEgU2tk4ymdd8856ni9hZ9xBRLopZc0villxIHUcGTsLpgWcANZLTEaJ7r5eFA.Uer3Re5lmjv2AOMl3dvW2N-0wKT3Jq_UPKrI3twmRDw + - XGjTC8ieZeFrWPGRGyt1_LSr2CieoeKMUZW-Q-7SGCeAvrzBxtvyo92nIV8RHE_9zN9Tslh8aoUAmwgVMyEGXkJ3e5s2dayEC45MbXkZBnguE-XLNQgzd50NuKh68IA6VzuMKOUfxpmcepsWTpK14A.PoVTMT-JNueMjn-Ee-j7E424L8W2ooTmD7Oed5xmsKw pragma: - no-cache request-id: - - a21ebf7d-ec71-426f-a869-7e5a467c8555 + - dd2eae39-f0ed-4f13-a1e3-ac7382647e49 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1138,44 +1160,44 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:57 GMT + - Sun, 26 May 2019 04:21:29 GMT duration: - - '540961' + - '816768' expires: - '-1' ocp-aad-diagnostics-server-name: - - /ixj3U5tIdjsTF7jhrxO6gaWUFJzDmFQ2+8C7xVSngI= + - uHyVfaWnz1wZ+Kit9M+ndgirzc7H4vyg8f/Bx6SxLLI= ocp-aad-session-key: - - MCyq_v301RCgk3wbYglombqJWdyz5vcIj4tNUptQVy4GUXHt9a10nOWvDvTA5cmLjzVi_vlJClorgxn5tA-UPR47__bUFbdIo26uhB0m1uY-nw9-DHeLYNWQG97ZikPSK3Zlb9LgcLhL1qWMh6I3gA.AR4TVYbnteb59xK2F9ZNHJ46gFnjG_0O9L1nego5IJA + - 0n7mvOeUjKwXO3CSwXytQi1CI4dp_PvMFqjpsaiy5EICrUU3zlfldFTlirZVuCU-sMAEytURyeTavc7ZZmvN92jq3ENY_FMwr2vbgLuxdCCyeEiuqVX6tInToOdmVQIAGYZew5WWf-6d0Wcy4nx1nQ.MCfHeFztfcTPiAOZPCurn-hhP3zYqANKELPJ_mUhblk pragma: - no-cache request-id: - - 3aadf87b-6a6c-4258-923d-cc0bdb1dd327 + - 25b764d6-62a9-4647-8402-18648a00fb5d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1201,44 +1223,44 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:56 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '1002565' + - '1610903' expires: - '-1' ocp-aad-diagnostics-server-name: - - XJbTIKGdEOf1NlwmY8KyGmuB0cYYMB3F3SW245EhNiA= + - r0o8Zfv+/EsfSzvffV1oL1MCccQ68EumyGGwG7/SNv8= ocp-aad-session-key: - - rZGqG-MyyaWILro_dT8EU-oh_4h0ZLIg5KH5HdHH8RZhKLr0kUlhjxsQ443BxXCCK1ghLYEqWA6kH0ZjbsF_Ey8uU-lAoEP3ZZFYe45sETwsCKgt-cjcuWK0u_39YGELWOJfIcIrrAtq5WLt9doswQ.ib2A8fqPSQxCnckyZu0sc_6odVNPwR2FY5R6SmrFPss + - OfZglol7OaymjK563Z6_NA_OoersIFd6k4opW2oZ8xrz9mHR4lH5XyQ3BP5aJcj9goz-VycsaAYEEZjiYRj4btN5S_xb2g_1MUubWChPLz0j2bwhzRr5uxx_RbjxYktI5tiRimA4CeTdbP2Gsx_9Mw.Qj4WTBnf0nVWBpSuK6clLyPQ3arNQ3E1JIkoYu2981U pragma: - no-cache request-id: - - b627106b-f8b3-4fed-932b-fc138bb41e75 + - 9fda8b0b-03d0-4512-b9c7-c090de3301f4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1264,44 +1286,44 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2392' + - '2389' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:57 GMT + - Sun, 26 May 2019 04:21:29 GMT duration: - - '586765' + - '868517' expires: - '-1' ocp-aad-diagnostics-server-name: - - 2gCJyEullf37VKgfupb1dpGiYlGUN8HjqZHuUwtlts8= + - 3tNvVkm/Zj7QKWAs1YPTXA5TJ87jXEFFrif+RYkOm5g= ocp-aad-session-key: - - EmP16mZvJxFmTW5_VZiLdYRzAbpgjx_Wq7AO2ZaCaAA6unwaDAPLw72qfDurMx74VyOsyv9D2xcwZyo1kTBa9o84wLeJamPHahl9e2eWdkiUiPwAkdIP8yaYhDTg9zAU30DN8NDEc8BlEWWx-9Ml6A.OJ8NG1bsHFuxb5fz6CuoTp4zjXi-iosr6NJrJlqOISk + - FXJg3tdTXcK2CzV3LyJTHHbYCEi2fulpaoOwoYmhePiHVjJGDdaf72_9F4injWlCabHkFmBSiiKZIQaDmhTjwOX32TgB1Jk-n0BiCHEwnegxesidN2eaMzaSljpRY1gFjCno7eQgOwzyuVhGtF2JWQ.CKmMb21otFARBCeh7P-Nb9L3OwYiLQH9ZpFP_ekjYvc pragma: - no-cache request-id: - - b1e9b384-760f-43c1-8f40-f916bdecb607 + - faf1e37a-3088-4e5d-bfb5-6db26bfe607e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1327,15 +1349,15 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-04-16T22:56:52.884002Z","keyId":"c044ce1c-430d-4491-a95e-547c67a4827b","startDate":"2019-04-16T22:56:52.884002Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2020-05-26T04:21:22.418428Z","keyId":"498729b3-2ef5-467a-99b9-418ad1153bdb","startDate":"2019-05-26T04:21:22.418428Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -1348,19 +1370,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:57 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '527764' + - '981585' expires: - '-1' ocp-aad-diagnostics-server-name: - - Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0= + - Ejlln//HW8QHQEvfdHqbS3KozJkF5qO/py2QoUOMx9s= ocp-aad-session-key: - - -3DHBcItVCIYixZFPNpZU1mf680AFI2SAi9Z1xSaYBHZiwEh4SLX6V8TPaF4UkzuAGxRatXNpq3IXueE3Cu8_nqXT0R16l5P3gQ2Fj8Y2AAE6hV_8cm25C8FxHjvIfISZweFLZgZCtqnFJ3qkFJFXQ.CSInkDsrgNRzZDeazF08IwPMh9TnH793qnrZ8CdYFTw + - kEq1ZkEsJvszVdyOX8-ri5nftM3VfSMKq9dtphwly9QQGvIuQDJCUYBttxkHe_7PMBSSnYjWKfGk_vwL5zQuYeHVh89ckjt7TuEbwrRe4gxTZBldZzt9LNNbyXLYc_T1uTgLIqI8YzV9x2JgsbUFbw.BM6g1aVvNwT8bHhjicf5MpYBu1BS62xi0izNtHhhmQ0 pragma: - no-cache request-id: - - fb7f3726-03fc-48a9-a3f4-cace2ffddb01 + - 212afe60-c642-48b6-8542-7296792af1c6 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1373,8 +1395,8 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2019-04-16T22:56:54.728004Z", "endDate": "2020-04-16T22:56:54.728004Z", - "keyId": "3eca4c36-5854-456f-856b-e396538c374c", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}]}' + body: '{"value": [{"startDate": "2019-05-26T04:21:25.369574Z", "endDate": "2020-05-26T04:21:25.369574Z", + "keyId": "342b819f-dae3-4a2e-b848-6390482d249f", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}]}' headers: Accept: - application/json @@ -1391,12 +1413,12 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: string: '' @@ -1406,19 +1428,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:56:58 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '2112607' + - '3867261' expires: - '-1' ocp-aad-diagnostics-server-name: - - o4bl121GCCKPqPOtEg7D2SQZWnlxGxP54gdVhEg0EIY= + - zPeOuJeNLZ5N5CAKU8XN6jsJ5sC6cSv6Gh6WpNy3E8g= ocp-aad-session-key: - - uMdV1Ts2u0cfY45ZMO1QsIVZ5o2JREdOm0yfYdvJsPyr98EeAtA-0Ih0SziWgoSnao0M_UhN5z0ulMTh2bDdIt2yk-Vx4iPN0d2sQ6PhimwVZf6QKTBkFMSYnJT0rD1DIJfg6gvkx3b2GOH5-pGsGQ.Rq0I3LgCDHRe_r-SOzZPFEcsER_oZhSRQXhFgsdjFZ0 + - 3SSODB-A7Wr10aOYvAok1CzRkbFj7DnYvzQCZkvFit0uwM7Wk7A5psVDI8NYZPnoYaabHW4mUfRCusCC9n4qFy66bNeMh1ivFriL7HEtpAdQ92XEWMPoRSRuTEH_zkP1vAtSyjJEpI7V0Ag6b1EjNw.Q0g0hOvbTkR2U7GHgfX9CcbHACDM8DWgQtRqYIFlQBk pragma: - no-cache request-id: - - e5cb702c-2309-4ec9-b0cb-ee130913af65 + - 3dc4a774-e94a-4a23-b318-4076d7ee0517 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1444,44 +1466,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:58 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '533785' + - '667500' expires: - '-1' ocp-aad-diagnostics-server-name: - - 6K8lWHvVsgBdTBM4xsdGPioJWlS7JXIeN4jkSphTepo= + - o4bl121GCCKPqPOtEg7D2SQZWnlxGxP54gdVhEg0EIY= ocp-aad-session-key: - - k1Jf6J8kTzzO70blfolJmSgoXMqepzPVNINJpN_KaPHF70tpALpKGE9z251Jzrlo8K7uqX2aq7w0hZikdRwAHJD_689rEe2lbnP_uUocdJS-HlzLycfbaikoC8wBruEjbY-uIpEGcZqO3zYkGq8fjA.5wINjYD138xDPLVFDxcJvpjUt__zjkoG_oAdMERxsbI + - hh9ASYdjnlsXHkkQ3d7YoMmfmYZCRyIfsfA8B5DlaDSkZ_HqiBES-k_KFENB6zPP4YYj4TQZqHyLrKxeyYFTNmayQ94vkQ323A9SCziUoWqo0Q9K0oJSXaXS8oySY5aFRMoLdmwsvyx6QOcPzLiTCw.s_OLfPr7Oo-K4fe_1HOIxA3XkehZkmCyTRCieTFbvSY pragma: - no-cache request-id: - - 95be4ef1-4acf-4f0b-947d-ee3c8ca43ac6 + - e0679035-199d-4eea-8b89-d21b1f8b1fd5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1507,44 +1529,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:58 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '684648' + - '689414' expires: - '-1' ocp-aad-diagnostics-server-name: - - sddddXJCDv27jmu91AjCY4cjIA04nWQAsEkxbrysAOg= + - PWJF5MXsNJeXfk2GpX0VavQ33Q7BBlAFQ1PBOgmVl+Y= ocp-aad-session-key: - - eUbw6q2uMKBKosPQLosQRvqUL3Nre_KW9YnjY1lzvMmLXZj-kZq8lpQmEGMm_0Z-sEt4aYx4yH13BXHcpltkK-SGheUwo83gvWaiKfVuleWE4U4l8F8SOK4tiKO97xPG4FPnuGvl88gIwcSHNiwg7w.NcqE84TjAkyBtnn9DvQX0lajUhm1cyP1BXWaxT6rEx4 + - FL5RVqHAjcu-VCGm44V58UqoH_0iaxwgNsaSb-CY3WnNn2mrLiMGezEg3jo20o85_GR_KpisOksHvteob0dG52jWZvs2NSAOL7fbcQ3bqtMAK4s-frtENv8dHenWbDWbRbCWJKwLKIdasSt6kaL3-Q.2MuaIIt_Gc2lC4beq_EtD7XWqu0kocdMAC_QeV1TIUA pragma: - no-cache request-id: - - 746cebbc-a007-482c-a916-70a7a6dd4b8a + - be54fa2f-35b4-4bdd-b92d-a0dff65d4bca strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1570,44 +1592,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2207' + - '2204' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:59 GMT + - Sun, 26 May 2019 04:21:30 GMT duration: - - '701920' + - '775551' expires: - '-1' ocp-aad-diagnostics-server-name: - - x4r7b1LY8ujvq+pFqJ8KGLwz1kogO1LaK3X1LJBmIWM= + - susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M= ocp-aad-session-key: - - lh-mUEs6EqqOhUyZsMO5asGsI6dKIkCs9ZH3S-W5lh2s9ZloUE3pd88C9Q7s4tC09JPajeXrFPudv2mpTltTrlA4bTsD7LPo4jaLcADIN3cZOhffOhEeKGnV6HS4oTG-ycjiff5X9lCKOUqSXp4-Kg.qZSQ_HTwtP38AbwwgazDDassT-1rwzk0njjphoGpxlc + - ESc-jf7jyvzeHVQRfysS5Xuf8OkOVm4h_3fI7uy-y1cm4r4NSJul-j0vKAy86Xnrmy9WVz1faWnOz0OYUsNraP8sTj2SsAqKJU_bd4doMeXAIkOrVbi0-kit1201IteqE9JbFItyBF9oC2PP0UKU7g.SGoSkvM4NvXeD8X2Ag7tVKGuVRtxZNZKel4jGNddvJ8 pragma: - no-cache request-id: - - 9efc20cc-a80b-4811-b021-c29acd4ad390 + - e4891211-68f0-4a23-aacf-e9279360b931 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1633,15 +1655,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -1654,19 +1676,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:58 GMT + - Sun, 26 May 2019 04:21:31 GMT duration: - - '561790' + - '841546' expires: - '-1' ocp-aad-diagnostics-server-name: - - LgXAcbVEU6vczw1+dJY77u/nuJ5/uLYq6pT3Y4X/6fM= + - nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk= ocp-aad-session-key: - - ARTVq4lkfJDngSoJsoA_3QivbXSLSTrC2q3kDqPU-Nl94-WY0_pUqyNbZf-FVo4OoMKWo20nDJtGgae2fy0tI3n5cQkXh4lC9EgQghXRWGKMCpyTNanxdIAA9vrvG804132_LjzNrdEFkCs-FHmf_g.Czty0jeZP3K06c9a9r56bJCoYeAomvti2ZKcBNBIjHo + - nM2zUO_pGje8rzvhF5015yNBtbYvD95i3YuPSD9SpU2OMmLUpJC_NnZB4tq9-Gatwu_fjOJEububGzwBfH6cJhQ4wwxaytjcMmExWHwle4tFl2T6UZ66qlYZpnFsOeqyU5qUywCss6x00tuq_CLQGg._-eXo8TILjHy3tn-IgjufhmD3vlc4fGIjkGrgKZWkY0 pragma: - no-cache request-id: - - 37aed52f-602c-4842-bb7e-a36c813f474e + - 71a50517-ffbf-405a-8ed8-22da1b8d50ab strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1692,44 +1714,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2207' + - '2204' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:58 GMT + - Sun, 26 May 2019 04:21:31 GMT duration: - - '614680' + - '719281' expires: - '-1' ocp-aad-diagnostics-server-name: - - CLBFhp12uVA5Nnh6MG2VC8aF6kYj6BwyK0Y6WAoeTzc= + - s2UwUVi+htM/n2YkhPwXRPeUZqg0DtftoAt5dzpH0b8= ocp-aad-session-key: - - OwArYPvnJToaKWcLSNyR7qFGCV6hg8cdaOnQtfjssElRMqrTpmPI3BSTCnWnsLGdjzMoBlC5rwbaZsBj-paXVXIgP7CfHdmklj7AXgCPCsp8VcuJsW0Brs1ihvMgQ95pZBIzMcLP94ghDmxVoZCYZA.9SbmHJ0P-3jXllpq8plQOmC82Rp4dcoVaXnYDdK0_Cw + - mMZKu4MLM2Eh_BJ3D3cZRoJ0A3w21_shdxaw0VE18amswZR1HyFSdyc8LiLbYOmBw9pjF-Fb5scyiGIxLFe_u2Vl4_xfhZi50CKzsfw73tRTn2yUKA7HTZaXFGDgertmwM-C3_jYdOkbk2szRDZLHg.mBeD7O91KI46IG-yYok6FPhU3EI41RDH330nAfVf7aA pragma: - no-cache request-id: - - 97594fb2-5e11-4b64-a9ce-9211b61feeb7 + - 28a3c8aa-0ab3-4377-befe-3e15ce37feec strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1755,15 +1777,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -1776,19 +1798,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:56:59 GMT + - Sun, 26 May 2019 04:21:32 GMT duration: - - '546310' + - '823642' expires: - '-1' ocp-aad-diagnostics-server-name: - - R24SEsKL6l8WwGja0LsRtb5gfSEzPaANsccbqgL6qjQ= + - Hmgcuy1hpGi6KCpCk4BrqM0RyCbBpwqDLCqIAEp//qg= ocp-aad-session-key: - - OZSZHFjS1RXuNVbaIaXERQrR0p-27vGG-MelqrVUMezKunCSEovFQDbcAPeB7oaI5rR17BaRDuLMJGj05WhmOFA8i-V5ExzOIZbB_UrIiYegHIJYqOM_tGvgPQWDuzjn8uBsY8oPLhDE8q12FynquQ.JOw6tR0Jb9eKtSItxX52iCm7mO6kJ6CdcBnOKwbiHQY + - 6Uh_2BMSIOh9iXS_e7giv9C6OMEoAJ_XjmzK1s6HLmYtH28dpRy_bIywppSTYylGywoejawLXdUyaWPWrMwBQVKAKkuQNzVDotiHBhJNm3cGeEL48KRrGVwGejKMDhmpvnWtEvk51sOCR5nTPQuQZQ.V5PTyQFdH0uCh07zVqXtWuxTAI-DTJEt36O7gAZsEiI pragma: - no-cache request-id: - - b3ed5119-d332-4fab-b0d2-20a3b013faae + - 82cbe246-f7f5-4aae-bc41-ff34eb6be182 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1814,44 +1836,44 @@ interactions: ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli-app-000001%27&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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:00 GMT + - Sun, 26 May 2019 04:21:32 GMT duration: - - '693302' + - '814924' expires: - '-1' ocp-aad-diagnostics-server-name: - - hwn6uEtjHiiLa1+/G29HvIs5WOJFHYFOq64UHyjuGvY= + - 8mo13EoRWl9K4HjFXKNL8x6iE55Dhc42u2WqP8pxZGA= ocp-aad-session-key: - - mEqhbbcNzNm9wf0Q0jiODtmfIDTehOZ8ox7t24wJ9Zv3VLxv28fRdZwvFBmCoTSM4nlFRkag5D5TCxVv2soBj9vZMvUUATTv-qobV6X8rNwgvy2zbkICgRmNWIS_dceijBW_ekJhZ92x4K-xeTyOzA.FmhJ5LKAuj9y0uJEPB0sK1qKCPP-k6I2Lnvfb8NcZOo + - sFH7Nj8PEboirSV67T5oh4LBTxc5z8ReoYe0055RrG9dmQtmTMmxMLOuOxg78waSdjjKuNxlyB8RlKyTLfSv0kL-_DSLlD5CPoJevJFJc6L-ViBZrt2XIgyTif-7Lt3EJFLqPYBRecNE-MqC0k8wKA.x3CZFn2NN1RUQMCoTeIzeMTPKo0WTZJjOOhyHRyYj2M pragma: - no-cache request-id: - - 01fcfc2d-2681-4192-9c13-064013e007bd + - 87a65719-a2b5-4a90-927d-457a90eeb17c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1877,12 +1899,12 @@ interactions: ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -1898,19 +1920,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:00 GMT + - Sun, 26 May 2019 04:21:32 GMT duration: - - '515270' + - '798322' expires: - '-1' ocp-aad-diagnostics-server-name: - - R7GE/wZDw5mYOVlPUsy4LuVepndfwrdQz1ATlcVdHv4= + - wIQemZ+5vqMn85aXsgJ+yzAwtRuiwLPflul5H4QC6Xs= ocp-aad-session-key: - - m1LO7E0U8ptpZRE0jRTqs_kZNHLw96IhYKDgIiBcxTym0leMV0-9MdGWzqVkI8Dbbr-9Ic6MwUdE5qKsfufY8Y6WJZ2Cn14x7aPfekN5gTyJe9whu2dbklPprs2y8KzrCToQcCuWmkTmjkU7drgKiw.t6CT-RR8fQrmUlac1UP98Aid47pQkgCD3sh6PSrC1ZM + - 3tVNbf1VscY3p0R3bnpoJV_twPDp-k2yS93KSwZha4ZM_eqTYhgqVZCE5Jjvzmc1WZPUmukv8MvuZw6JJVDypgbHbfNwP1XoS9WYwoCMP9tBXQ8dTAnLNRB-dnzTytZpHM8SIPhDH3HCb8bERewQjw.SRImhNkZ5cbuMAnc9R5LjHf4GHB2irgc6LClWCbAiqM pragma: - no-cache request-id: - - f0485e15-abcc-422f-8c08-98e618378d6e + - e5aecea0-9dc9-4b70-be00-55763f2c9d53 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1936,44 +1958,44 @@ interactions: ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27&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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2207' + - '2204' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:00 GMT + - Sun, 26 May 2019 04:21:32 GMT duration: - - '542115' + - '719938' expires: - '-1' ocp-aad-diagnostics-server-name: - - Ctepklg2J0Yv0+dqQJ0Z2DWorgOts60ilDVLun/aW5g= + - 2gCJyEullf37VKgfupb1dpGiYlGUN8HjqZHuUwtlts8= ocp-aad-session-key: - - TtoZsMH44_DaIOPp2KLtQ59jEecub3MgIN4CqbUOYY3xVCLGyLH1X8o0OdpVITnYmjlwzwtQ00TLI9-fkRe7Pt156ilj1WNxfJzkgQZPIW82xh9f73a8sCDnMg_xCpQNv2-gr4Xh2EMm-hXf5u-5Ig.G83md2ysnzti7ydVrUCCisdrUdyqHS9ZGfJJj9iZunU + - iwgWSlopHIVQUyYVQ181y1YpYEtcgJ2uASIBmeW67_ZUVmx0l8yNPFCy6ndNHJoG0yYpMvX7GJx1dsyQP_nR-kzSRqrEoDOoBjiAlGq6uPJTeRJr2Cv19IcGDcu2TGrMMlH_TTNhSHkvEwGN5fZX3w.Lx2buyPDWnP0DKEvJkGVl6NtdXlFM6hARSH3vW60NQA pragma: - no-cache request-id: - - 5f70f4a3-b582-4018-8cb9-799c07099b6d + - 9863f3af-a2a9-4443-a235-85362b8e4529 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1999,44 +2021,44 @@ interactions: ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2204' + - '2201' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:00 GMT + - Sun, 26 May 2019 04:21:32 GMT duration: - - '584487' + - '996025' expires: - '-1' ocp-aad-diagnostics-server-name: - - zZhyt14zl0OhjZk/+0wTMqtIww9oR8AMqmXQ2MnPyJw= + - rM1KdcCuqoQ1CDuAZFk7Kx6C9y26eNQPriKUdQHzxw8= ocp-aad-session-key: - - Zl_8oZCfY8_2drFqK80vHm3_ABiSUWxm3hgx8L-yX2w1_5S127Fyi6DQA8td8HOKYIgwpylwklHPFYB_cwrmP8kFuTTTks6l5pbMwQkJhmJ_B9URMHfM6LyhgQBhtVVY_M8ZM_3edOwD2MjglvTGfQ.eQiG6XaxZUyATZi3a4DMjZ0c31gOlFo4t85eKlu8HhA + - SFbzEE77zWd6u8nCuXg8ppHRVL2Ep84Wxs7G31g5wyaebp0FwqjB8Ods7GtizE1P_n_CuqJl_l4qqygT-Gq67NbjaNyKe9PVALXpB8sygg9wvFelfBe_OBymAfudzt3JSsJ6wrgs9KJkOCtY-oIIZA.tMI1JnjqJAtr9k4CrHqUZ-QshRogW2HztxTVb4MJ4_4 pragma: - no-cache request-id: - - 361f3b57-b109-44ea-abd7-7cf11f8214d9 + - 48328b59-970f-41a6-a71e-e2b44b92a627 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2062,15 +2084,15 @@ interactions: ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -2083,19 +2105,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:01 GMT + - Sun, 26 May 2019 04:21:33 GMT duration: - - '542211' + - '669573' expires: - '-1' ocp-aad-diagnostics-server-name: - - lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI= + - bjwfCHqIrtGB+z8zTamk9qnExmWtx2/qGwNbbFSoSzc= ocp-aad-session-key: - - XZyb2U6X1cyEwB_jrthEhNU_zK-S65yBf0YoZoECsBWOZgAolY9NPQ3Jwx2C-3LMZnoNoz104d5n13FL_UBoY5ACR6sMEGvsS0Tg58qSxGZwUuSiWaO-5-5r4plPQz3uzyhbQmRziiSEYi6CUPn0uQ.cgKrx9JDVx_SF85lxgtT5SfrJX6DQQMmsgSv3reVLIw + - v3fzERHWIdrR9pzxiFnBo6sY444VX0AR2DUcCrzKN1yHOvTwBiStWP6OGXMISN8t8kxHq3GS9EdzVzw-hBCiI-tMjREzNl-dB78Dn0Uib8LBORyAi8kqNxvX9QAcYQZMLUXMcanOHlDvUOFw8Oz-sA.CrDAn8L1i0ndaV6-xrkXwK1wEvjUd8t8T7AK6fccHro pragma: - no-cache request-id: - - a3146088-040c-4154-ba07-d237b288a2f4 + - 8f7ea5b7-e9cd-45b7-a181-a58e5c7a7d27 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2108,11 +2130,11 @@ interactions: code: 200 message: OK - request: - body: '{"passwordCredentials": [{"startDate": "2019-04-16T22:56:54.728004Z", "endDate": - "2020-04-16T22:56:54.728004Z", "keyId": "3eca4c36-5854-456f-856b-e396538c374c", - "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}, {"startDate": "2019-04-16T22:57:00.185351Z", - "endDate": "2020-04-16T22:57:00.185351Z", "keyId": "989b832e-be54-40b8-ace0-50d3ae496efb", - "value": "verySecert123", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADIA"}]}' + body: '{"passwordCredentials": [{"startDate": "2019-05-26T04:21:25.369574Z", "endDate": + "2020-05-26T04:21:25.369574Z", "keyId": "342b819f-dae3-4a2e-b848-6390482d249f", + "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADEA"}, {"startDate": "2019-05-26T04:21:31.700823Z", + "endDate": "2020-05-26T04:21:31.700823Z", "keyId": "7fbaad20-2c51-464f-9840-893b96365fcc", + "value": "verysecretpwd123*", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADIA"}]}' headers: Accept: - application/json @@ -2123,18 +2145,18 @@ interactions: Connection: - keep-alive Content-Length: - - '427' + - '431' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --id --password --append --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -2144,19 +2166,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:00 GMT + - Sun, 26 May 2019 04:21:33 GMT duration: - - '3111720' + - '5736327' expires: - '-1' ocp-aad-diagnostics-server-name: - - kU2w10RodSRmFDDKfAx6uHxQPwDam6n6u8zYQa+I0/o= + - 2Gv1gQSfiKJpA3rt4Mi13yQYs8l/cSGK1elzeDUE/p8= ocp-aad-session-key: - - ArVM4FlZER7XljlRw1Ts69q_Gihi2MkOU_fA-u5f41F7vrEUCrYZJ7U57fUn5BKittkBucRElTsgNiiQWNURpUDLr82kc4u7wHj82umGhbfU79gkk1nD5yd81E6OZ1p2n5EehI9Emf0lMNOm0fJBkw.T2CXtkotPKk1UseV9tTXo_Zk0RJkwWjlaCUc7KtQA4Y + - DZmZsMXt2PnTjocI1YX1MCOkjscl737TXA6sgYnNw4xEUolnwdFElKphYkzQ1UNjPxB5BaFslzPT8bxCnlA6Cyue4RI_x1cFWRXd4pGoNG1zzk-b6eh3OqQqXisPZwWNm-NfdXK1ZSDFjE49iwE79Q.F4TkcW2p_bTuSdPSjApkLdiR0oxAtc6826hE_Dq7mBY pragma: - no-cache request-id: - - 8cc69555-0770-46a5-845c-9fd1f1c7bbdb + - 1094773a-57f6-45f6-8978-acf7f82a359b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2182,44 +2204,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2400' + - '2397' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:01 GMT + - Sun, 26 May 2019 04:21:34 GMT duration: - - '578647' + - '708925' expires: - '-1' ocp-aad-diagnostics-server-name: - - XJbTIKGdEOf1NlwmY8KyGmuB0cYYMB3F3SW245EhNiA= + - hBrSXgYT6AiW34OnRqqllTrcBhIOEaEk4E+/a+pb/0s= ocp-aad-session-key: - - yMpVDSiQQ5fUFfQjZafoZHB9lJgbtKGxZlAXQdI5niiccfIG7bE3Fk_W_lAS-wg9XWsfW1177r7vsPE1Ri9TU-ZeD1PftoGpIuA1Q5Xf_-IbwnDvb1RF1Jw3PYSDSo5wi5T98BDVlyx2qIRu9aHx0g.9lpa97-VeiQrrheGYacfJXtklfJbM_gX2HBdGyBsXLY + - cM-skHmVRUxSu_Fac6TZ1QJAc9r5zg1Z8whlRr-Rl9FhVOxX7k3W_7ljbsN-O70N3exTBGi1IdCKnZToWC2veCQr0TmFLkQPDIXLJIU4ZgJHAY-SA4e5MN-MGH37QWFGYPEqMf_IdnkDp75cTZDHsg.rCTWmC5r8hsBstJ1x5ltKlbR6xdVNz2zNpb-LiYg88E pragma: - no-cache request-id: - - 6c07cab9-13c2-4f7e-9686-1964e2719e83 + - 26927461-6073-4b07-8a14-28069d30a595 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2245,15 +2267,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -2266,19 +2288,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:01 GMT + - Sun, 26 May 2019 04:21:34 GMT duration: - - '712245' + - '669415' expires: - '-1' ocp-aad-diagnostics-server-name: - - gXfFarcv2ysN8TtqVPgD1PYEnzY+oOLIPXpP5S4Cj3o= + - J4iPke7YPfBuYA4E3b307ck09pRqAOuzQKQ03+b041M= ocp-aad-session-key: - - zn_tL_NIMjRzwThZXl3okApAJlFFax-FV_JbVtz36pd5df1Z7zC_5JKBASh3uuwAbhS_JhcWx0hUQhArKlHheCMQ8cwQcqfaKFKNg1kVO9WmsTxJgWg4Dt2H8E-TiGT-PCyyWftFujzZn_RjJVK2Cw.mMgMdsencS0JTdIru4wwLoorJpzcXC8Pnt0BwP1rWS4 + - gzoGrlxtga5rsyq7QSEL3XFWN0eAk8wVQ0K7TeL15I9ozB4YpvVmRnyMOnDmB4sha6krq4OIS27iIfXPSOH9GLngzRYabz1jHO6a-APPFstHuLaXfld_ONFK2B1l-5ylCQXUhmzOCbmnKiKk4sWO1Q.N53EG4vENUcjFxJ5vkGX0_ZX4HPxaWWcwCdjAZFjLqo pragma: - no-cache request-id: - - 761a0801-20d3-4140-b984-445076df79fe + - fa7c8b4c-2ac1-4573-93de-ee9a25063fa2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2304,44 +2326,44 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2400' + - '2397' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:01 GMT + - Sun, 26 May 2019 04:21:35 GMT duration: - - '538510' + - '718538' expires: - '-1' ocp-aad-diagnostics-server-name: - - 8b/Ht2S1JqSnD0uF+3TSXMqw6CMlMu8U0UwicIuMm2g= + - O4KpSJbi5/6YCC+tDQQlh4m8zzG+ja7BdgLs4Moxbzs= ocp-aad-session-key: - - 95yoiblbiV4FhD0ybYsBYfYMGB4pqZboiCwAO1-v7oH4KApeMplVUpUsS_z32bmTWX1FlY_5wS7Ko7_CRMJG4NH7kKM1TuU5KXk6OEni09iPzBMxkiu48jSLqWKDaXDUlM70UJdZTizeUupoR8wftQ.eJU951dsm1PHRJW3F12w0ZedstZRo5QEolMHuL9CXVU + - 0lrm_IzKrQysP-wVCs0KTil-ltp7-FCAHzX965XrbICIZZd_wpEZzNx98OQhwQ0PPDF_jYOjTjS64toCLDtSPM7235JhWTPjO6IX3b8d33zj_tdOCbbWk7ULXYzw3ziXPXhYZylYsc0WCOe3QGeFXQ.ZHDdvBIvWnaNekceQ931U3JYw0vHuhgogPac506vswU pragma: - no-cache request-id: - - 083fc9fd-7ba3-4c40-b2b8-be28b08c6c22 + - 0144ecbb-7e46-45f5-a9af-4fffe8c469d9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2367,15 +2389,15 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-04-16T22:56:54.728004Z","keyId":"3eca4c36-5854-456f-856b-e396538c374c","startDate":"2019-04-16T22:56:54.728004Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2020-05-26T04:21:25.369574Z","keyId":"342b819f-dae3-4a2e-b848-6390482d249f","startDate":"2019-05-26T04:21:25.369574Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -2388,19 +2410,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:02 GMT + - Sun, 26 May 2019 04:21:34 GMT duration: - - '536220' + - '705594' expires: - '-1' ocp-aad-diagnostics-server-name: - - 6xA2684Cj65PUshjMtOaUZ8uUmQDbXvvhx+F3BqrgRE= + - wIQemZ+5vqMn85aXsgJ+yzAwtRuiwLPflul5H4QC6Xs= ocp-aad-session-key: - - YOFFhI-8GT6x8QyPX5q79hNxY25D6DVxNK_vqx8so-ckj7I8uRqx__i8PLkkfiS48vINW7gShtYr4cHJzdqMpBWL3EKLyqA-z0fIRRWETSd4FQ7cAppXUg7os0XMdWU2iTy1KKV8mW4nYMtaJua7xA.qXFggpeuDMIG-7rVgeJJcAvp53V_ObjqWRrcGySYeXg + - vdNWfmfcm8oJmht6RcwzB_IzQvFZ644JF-AZCbcjGssxjT0FnUQO-iGA-LWLpNNgGHtdd0Jv7Y-JssG212oOBvzSw46qlli5JKQqv4v8AtZ0lMJjJk-b5BdSIvDcX2_9h1BqY5JTESGqna3kjc_FLA.21hm61EB5_9yGpYtqZtblvjBd6LTiAUNjtdRIRuhbQI pragma: - no-cache request-id: - - 1456fb62-fdd0-41b3-a53c-78730a8ffaf9 + - fd3996d1-f954-46ef-92b5-bbeb1f15aa13 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2413,8 +2435,8 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2019-04-16T22:57:00.185351Z", "endDate": "2020-04-16T22:57:00.185351Z", - "keyId": "989b832e-be54-40b8-ace0-50d3ae496efb", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADIA"}]}' + body: '{"value": [{"startDate": "2019-05-26T04:21:31.700823Z", "endDate": "2020-05-26T04:21:31.700823Z", + "keyId": "7fbaad20-2c51-464f-9840-893b96365fcc", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADIA"}]}' headers: Accept: - application/json @@ -2431,12 +2453,12 @@ interactions: ParameterSetName: - --id --key-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: string: '' @@ -2446,19 +2468,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:02 GMT + - Sun, 26 May 2019 04:21:35 GMT duration: - - '2399060' + - '3867231' expires: - '-1' ocp-aad-diagnostics-server-name: - - WqKhWXvl1okXb47qljo0lPbR3WueJ7PneT8ez1L9elM= + - 6K8lWHvVsgBdTBM4xsdGPioJWlS7JXIeN4jkSphTepo= ocp-aad-session-key: - - WAspkhI_C0hUkSq2YlsWqDPQzCgk3YOb6rl3nRI0TBorE6u8yLM4h0c94IFGFxk3s8wpnYq1y_orLpRRDitgwlSLxKx_BJhEE-vuwNOOw7XfZFds2_Q_gWjm2_PjfZpWyMN8XII7wLV4x-F_-ZXRWA.mqv7p4Qahv3mCfPjt4Jp5m7AMHYqwJxBhbxSNBleCsE + - f1hDDcMcetXMH_S77ghI476FQSPPs_8A65KXiTSbRUANT_mDRe7xuRQ_VwMT5XMQrdBtQaZJVIFjV56GfjWm0O44twKnjDDbC0JgTtDJ5U-P3w5E-VJuAmjl1ZfqBWQ1Kf44WErhXdclfgyVVdd_Yw.i6tZbq9GnE1BiDDE1wzH33AtrsCP-BT1LgVbV1UubPg pragma: - no-cache request-id: - - 9c6b522f-8cec-4476-b8d5-2b776dce9bc3 + - 4cb071fa-1c44-4bc4-ab86-d41bd862e364 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2484,44 +2506,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2207' + - '2204' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:03 GMT + - Sun, 26 May 2019 04:21:36 GMT duration: - - '559770' + - '711714' expires: - '-1' ocp-aad-diagnostics-server-name: - - tqsvrwCmDhrCSNHu2t6CdV0LI4CjAgREZGXRcEu5W18= + - qxvg+LgKyuIFTpm0XjmicPMsnZzmR6m/OWBxHpYTkp8= ocp-aad-session-key: - - dcp_rzapLm1yJ0ag0CYRAh058qUR1VxGOCNxuCFe0RVdz9dB6oEKqvqjspVyif0m3xQx2VqJTNmpDpNXH1MW-Gj92muhUJzB6LxjRYM59kI47KviLg1hMgK3Cj7NCQD4N6JgzGwdAAVPyfPiAzDEwQ.02rKA15yiKOX3cmeQeao1-nJv7lFgFo6WGNrd7gRrco + - bxyCm3yfJBRsQw3emphtM2euquxNL4LykTi_AmHAlaGnAvMUUAaQsarwT2xv4mx-3bF9W3KYaTLfx6uBLGENiik4nLP1wS0mp1oSDDXHyEvIO8vgbIjMola0vZexMN-rLx9E7n_0UwgG8jC7hZoZlg.KgiZSEURIjxm1fl6uNxPH5TsjbLacf1MEohy1xyyC3E pragma: - no-cache request-id: - - 50f26803-f46b-45e6-8121-eca639b01543 + - fc2f7511-0f15-46c8-867c-adb542b89245 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2547,15 +2569,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -2568,19 +2590,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:03 GMT + - Sun, 26 May 2019 04:21:36 GMT duration: - - '534924' + - '2600433' expires: - '-1' ocp-aad-diagnostics-server-name: - - H9an+qrvBeT3NN3b3xSppbQhDiR9CXe5UeASTHq/18Y= + - YF0m9VfRaICKZ7BaPBWJYnZAznG+rGxvI3UhMCQZVCo= ocp-aad-session-key: - - eYUGxbt5RijSsRjLtpDrMY2jXrQf5yVIkJsFhPlX6oL00QoKXt5u6uaW22zlWygSfxaFA4MqfbS41Fth_suZnC_nctxGcorlMCwPO0qiyOnKwNiJm1MuwsJ6CvPofqxdHHV5n4sjcuaYCogwbb4ktw.PmSf9LxIn9GZRqBpVjUVXQoTBLCjLfS_BFkpCPYssOk + - UGng4fqDQtqav3X-glKsOXd495tqhp13XZ44hAaUvq0oT-8IZi0u11YyVKf8Yspep6lueaNpx85xMWk94r4NR59fY72tIAQap8Epvs113dgF_fIu7lZnKvmyi2IzsmOUSCP8LFXK3vfV1-lDTaTmpg.ahSmF0yMTwNPSRBEqQ0QokEzirXfizSY51T2zjSc7Co pragma: - no-cache request-id: - - a09b7da3-f5ab-4c2e-8d17-405cd1bcf2d0 + - f9e9228e-a0a6-4a31-a885-5aa36a251bd6 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2606,44 +2628,44 @@ interactions: ParameterSetName: - -n --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli-app-000001%27&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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:03 GMT + - Sun, 26 May 2019 04:21:36 GMT duration: - - '545688' + - '2517615' expires: - '-1' ocp-aad-diagnostics-server-name: - - q5Xbh3MZA2oHL2aMV5BkPDdbnE4y3W66Ql7+EgkvqGE= + - BXRgh3eu6YIFumaSZy7lFEXIwtoZR+AXCAi0P8igTHU= ocp-aad-session-key: - - UWjR3JJx8qHJ42z57P3_wMd0nobYe3lqaDWxYyA9eWnEouUOCY46RzurDiwr8-sfWsQ8ucCiCPrkir_7xRkM2gXiTFTXhsHrQvPGAkEgM45KjiW53DqGYci6OLDmPpDqqGPOvdiN-v5PALKN9E500w.53Di7VgQF39tlyGmuEPn1YFDtOiDb51fRED5vjvPs9w + - 7GxJp4xGLPblql4zTeyJSE6Wzmn9DJWg7BrDcFldum2zewmjcaU-iSj0RwsQ7HLn7Wr78vUAbfWRxgPRx3A1ESDWuXSwUe3W1C3AqGhx6nK0G8UiIe3VOW6k8UR8Jeq1HpN2Q4-S-28XWp0ZFsO0rQ.DcgJepcKfaw0cma3jZkZaOmEdfC0-C55-sFf3GEoHM0 pragma: - no-cache request-id: - - 6a4349ce-6683-4cb6-b300-c302ca135508 + - 4217e75a-c5b2-4883-a4f9-da389a43ad6a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2669,12 +2691,12 @@ interactions: ParameterSetName: - -n --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -2690,19 +2712,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:03 GMT + - Sun, 26 May 2019 04:21:37 GMT duration: - - '509811' + - '811937' expires: - '-1' ocp-aad-diagnostics-server-name: - - 79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo= + - nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk= ocp-aad-session-key: - - Yea6oPoW5Ip36zwn7vQ7lN7r7baCnoBGsnyd25w3zyd14xAvxI1PIftcYxkd-75HoCFyBWt_MU7-Uou1aYx9MIwL1jjvWY0j5Zt2n9bWn-Sh_Yc0vGei0n8tpGNNinQNNMbwEozN3rW8ffHJJ0EKYg.hTzh4Qi9dOiuE4QMh_NthcXKfo3bO5T5DYMoaAb217w + - cLKyJdLxo0law-H4Dl5Sc0qBdQii_68bZD7ipxjVmJkyJBhjJcyKS--Z_SMqXFS-9VX3OEbUotXOj_wPrD3b1XWHtiwwIM9FSsc_WJhAD_SgWCeXhFTjB9Jk0rZM55-6tN_FmTlAifwg5NI6ib_eOg.0fMB94qg0jV8_jmnXcl7U7veQq8HCHhA3OZh-thWdnk pragma: - no-cache request-id: - - 2ad8fd2d-9233-4148-9df3-09814b4312c0 + - df6b1d62-962f-4b84-9c81-6ddda76afa29 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2728,44 +2750,44 @@ interactions: ParameterSetName: - -n --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27&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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2207' + - '2204' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:03 GMT + - Sun, 26 May 2019 04:21:37 GMT duration: - - '562462' + - '668119' expires: - '-1' ocp-aad-diagnostics-server-name: - - WiG/DPKn3noJELxY9/Bmask7Igt00cCcbhfOcH/k7Qo= + - gumqaGrQuKMWKx5qR6D+EntZzHCdF7Gxbt/YYl8BbgU= ocp-aad-session-key: - - nH8yBd5lgRpXa5dfID2iAuBNgeS-EgtA2zYHtsj_69Tg9RSXevmHEPmYy18w67Xi3AlabGmcs3iEP-cWndR3q5IOu6Jqzvdn7z_gtryrzrLGYX0UhOLQEEZxNvZIspgsnOPG4O3QMraLyG3KdEAhpw.UDDTwxPnjknUxKkTuxvx3LlUijJneFE5aVZDMmm3YkM + - uuNgunpKxvxWvTuRvP_m9zjep1efiMvHYGIJFIR2uLr0MljsCtLUE7Yw_lrhFRSnx29m-9KKJIhdrbnHvesLpy97gROFQrqsTvOSTkb4w2-At08mtd8VR4txcxgYIcSYScfzfnzAGDdd3-97EwAxHg.73bj6d-iaYt9MauGDcJLqp51ddiIH6X3Js2AUpTrz4k pragma: - no-cache request-id: - - 040ffa47-f063-405e-b863-92b27078e914 + - d25e9c23-b16d-4e9a-ad26-bba3eb021c98 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2791,44 +2813,44 @@ interactions: ParameterSetName: - -n --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-04-16T22:57:00.185351Z","keyId":"989b832e-be54-40b8-ace0-50d3ae496efb","startDate":"2019-04-16T22:57:00.185351Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2020-05-26T04:21:31.700823Z","keyId":"7fbaad20-2c51-464f-9840-893b96365fcc","startDate":"2019-05-26T04:21:31.700823Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2204' + - '2201' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:04 GMT + - Sun, 26 May 2019 04:21:37 GMT duration: - - '546051' + - '707369' expires: - '-1' ocp-aad-diagnostics-server-name: - - 1vwxn/l57W3Dd2ohndO/5RgzoNUBgjKIAnyMf7p0r4k= + - hBrSXgYT6AiW34OnRqqllTrcBhIOEaEk4E+/a+pb/0s= ocp-aad-session-key: - - SkM2mAYRtUtcLHicNwNzBr2gp23v7DXrikd19r0ZYR0RkIbu7gtyJiK2G_be6sUrvBiebti-OPbEuiwAygEUCiMWkZCSO6O1Lg07vf8EVMK2nLmfjR4yPG9lLuKgJOWqDxsYodlFkxrKJtP-QhnYLA.FAwYAPnp7BgiIqFA9qXaqDwhWWt9ioWxQuCAK9krYh4 + - V0bUJp5buIt0fRYKTvOl6ZrT74gTr-7U5MOFunQMTYy1orwLfoCFY3U3jVKYO2k4SIzy5Bz_h6wwFxhmJVZvVDh3e8oRe_hX4ugOf8cKm57pWE5Cwf0DqkVIj-3zEJkRKI_OomW2DkNjOm331F_Hbg.PU6TR6Nl0k66QgKxG3KOmbDfYGF-nc_5GeoLadZMENM pragma: - no-cache request-id: - - 4198c317-9bf0-4dd5-9296-c2f81c1df7b9 + - b2fcbd2d-aed0-4808-8c4f-3430d82f83dd strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2841,9 +2863,9 @@ interactions: code: 200 message: OK - request: - body: '{"passwordCredentials": [{"startDate": "2019-04-16T22:57:04.014073Z", "endDate": - "2100-12-31T11:59:59.000Z", "keyId": "38a18647-0ee2-4ce4-8a36-aa4a428a3c2a", - "value": "verySecert123", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADMA"}]}' + body: '{"passwordCredentials": [{"startDate": "2019-05-26T04:21:36.212373Z", "endDate": + "2100-12-31T11:59:59.000Z", "keyId": "c87e832d-cebb-4725-9e8e-d1dd751f1613", + "value": "verysecretpwd123*", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADMA"}]}' headers: Accept: - application/json @@ -2854,18 +2876,18 @@ interactions: Connection: - keep-alive Content-Length: - - '236' + - '240' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -2875,19 +2897,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:04 GMT + - Sun, 26 May 2019 04:21:38 GMT duration: - - '2596433' + - '7015260' expires: - '-1' ocp-aad-diagnostics-server-name: - - IVoo8J8Kwo97hZRmPKSXFMOLbXJ4bYdeLcbvUm0th84= + - 03tJtVtrK59o2WrrDjJFasNQO9BoGoGL+dG53QSLpQQ= ocp-aad-session-key: - - drVZ5AZRfkUFlsuxzxN5I8puURq5zR4SeMMQOQBD6n93P_omPBSwoCbV-CxAQNfkevsINIXxRUlpf94LxTmBo1aDPjm8HoA_IW5psX6zeaHAowH3jXM6yFm8VGdUovQPxyJaqan2ExZ-5gMo6kMyqQ.OtUhiHbGazB3TfJ1lXRm0GZhtnXR6qAyRHm_w2Ybv_o + - wLu7uWDRjsCz5LZ3Y_HDi9JoPo0dfOvIIQ3zXHE11HohEQOd7aRGLrjx4ldazDb2To8pq1wZrokR1EIArKcqFku_uoeB6bl6I8bCaOmncjoalNrTAlqHRlURK6BmC9Ox970Sq2LX8y3uICnQLMmaAw.ilecnvqd0x8lrfrvRBlbOIbIvUts_jtR1ItOFdIP1bI pragma: - no-cache request-id: - - 0d0eb2c3-de71-4a33-a3c0-62f92bb3afcc + - b5cb59e7-2b3e-424c-84bc-cadff8f979dc strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2913,44 +2935,44 @@ interactions: ParameterSetName: - --id --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli-app-000001%27&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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:04 GMT + - Sun, 26 May 2019 04:21:39 GMT duration: - - '554468' + - '902414' expires: - '-1' ocp-aad-diagnostics-server-name: - - MMNpM+Iz2yBvvf+Oc4D7IA0nZD5jNPjSkaGpHqkyRbc= + - tAfU859m9TMv99RRajlEbUsi/5BnvcvCFalsXAVDmG0= ocp-aad-session-key: - - bhRg-gYbO4Qcj5CVp8kjF6x9xn-f2A0iO2PbRPzB1eqn37VtBSAQPD75BzfeJY_8Tq4kastV__YMa_pCVV_5L_lSH-roePux_WEmN4l2RrjrMBL8Lfc92j7U23kHyEUIyff8_X3NNrQJSNwZ5QcQyQ.lq4sxa8dXc-fMDyaxsz2gt_Az-Rdmmgp59RcGM_B1tM + - jGDkgVf-m6ANYycTo3nQCjtFoTMgRwYpUozy-b92U_DEPrcC49VbjS1MGvqNUwuvHkU852Cd-IqF89ckhGSSZpuSI7pDf1S2NxsBwfN5tO7ycz-Cyy3UJHFf4DLVxZsGlrsZ8f8Q2tT-pjLIKIp4XQ.uP_Wt6GRVf8ci8KyQgyrmyWUpUEXBzMBxTXPXvn1F5Q pragma: - no-cache request-id: - - f903b1b6-258e-430e-b4a0-f0c5485f241f + - c75c6b0c-64c0-4be0-85e5-40b57cff16d8 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2976,12 +2998,12 @@ interactions: ParameterSetName: - --id --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -2997,19 +3019,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:05 GMT + - Sun, 26 May 2019 04:21:38 GMT duration: - - '524317' + - '968357' expires: - '-1' ocp-aad-diagnostics-server-name: - - 7G98t5jXPmdc39u36x9DSb0cC/ny+jmdWuhB0dVG1QM= + - d1JB6ucVep7/SQwUJWs6eqivZfWvC07ij1sG/PhNZn0= ocp-aad-session-key: - - BtPinix1KzsGZwFNP8uiipRMgi45Qxr5XltR5oERKdKD4Kg7dtcrJFIti4gswg-LkB3CD34ChPcKHOVJOjLp1o0VOnehzPz-XvG7tpYH16R0wWP_P-u_4KWMFcTvbhj6uVd49LCI0ciKSZwOTngHQw.I-R951CqdPBvttn3c9C0ooRUx9j4q9L8NuRvNRx2XvI + - GWCkd7tOrhUZfZL2PYlfzUix9oGZfO-ttQ-Y5A6YzgD3wMTgw94ErGMBXNgmVekuePeD5LXyC68Rhaz2gu_UPK6GEVJj8dAwlCS3KP1dG7EbbO0xNWs8LPyEw6u7tQMNRFnB_niMvyO-ZCQhz4-4ag.YdTO0tM6i5q205jKsJ4vKoxO0hRqh4h8GIUh6f94KA4 pragma: - no-cache request-id: - - d118b64e-f2e8-44d6-91d7-0ec12e499d4f + - 0ca9d71a-e5cb-488a-be5f-cec7a655fef2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3035,44 +3057,44 @@ interactions: ParameterSetName: - --id --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27&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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADMA","endDate":"2100-12-31T11:59:59Z","keyId":"38a18647-0ee2-4ce4-8a36-aa4a428a3c2a","startDate":"2019-04-16T22:57:04.014073Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADMA","endDate":"2100-12-31T11:59:59Z","keyId":"c87e832d-cebb-4725-9e8e-d1dd751f1613","startDate":"2019-05-26T04:21:36.212373Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2200' + - '2197' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:05 GMT + - Sun, 26 May 2019 04:21:39 GMT duration: - - '567354' + - '2967169' expires: - '-1' ocp-aad-diagnostics-server-name: - - x4r7b1LY8ujvq+pFqJ8KGLwz1kogO1LaK3X1LJBmIWM= + - zoXa5OztcZwC9NCZAVZj5EM6pVPNXpVwNUsgvVT3hYg= ocp-aad-session-key: - - JSFx55Yw2XIfy3PeUa61owgGSh1gcMXJ-ST5O8qrvh8mb0bIbEf7X-QTX8vx5yKrIReZaR4hLcE0tg5H0pBRx4_HZ9MpOeMf4quL7-LulMO7BLGHiyn5cLSCaxw9M2oo-vq_r2_HakTgnc6sDL6CRQ.ZKX6HXBJrNdc0lF8vrzdta4B3HJlm_a73WbYjTnlG2A + - phMHmsYbd5odujMDlkesiPTikHEprw3zQBy0y1-WsEkvie1kvZz2jhCd1WDsmrJpxFYYi0SLrLKJsvltLklTuVpLBSde-7ocbOdlvJKDCw5mJHm3M47COgjLJWB3T9BXz-el0uvDSACSGOalYtVUYQ.OYQf2wmVR-b_iVzN5EM8ePaT2DfQ21LQ7Xk3kzVWrnY pragma: - no-cache request-id: - - b4ab437d-788d-4cb4-88f4-0bf6e3911c62 + - cee3034f-67d5-4d60-a749-db34754b89bf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3098,44 +3120,44 @@ interactions: ParameterSetName: - --id --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADMA","endDate":"2100-12-31T11:59:59Z","keyId":"38a18647-0ee2-4ce4-8a36-aa4a428a3c2a","startDate":"2019-04-16T22:57:04.014073Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADMA","endDate":"2100-12-31T11:59:59Z","keyId":"c87e832d-cebb-4725-9e8e-d1dd751f1613","startDate":"2019-05-26T04:21:36.212373Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2197' + - '2194' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:05 GMT + - Sun, 26 May 2019 04:21:39 GMT duration: - - '546170' + - '717891' expires: - '-1' ocp-aad-diagnostics-server-name: - - +i/Z4hAbtnUv8GUTjtLUQH8z9Wzcl8K6N3Y4i1a4li4= + - YaUr/QI8BdH2+9T2GuYNq7DhUfKmqQhjXjhZvXluhlA= ocp-aad-session-key: - - ck6hus8Fk0AVc43Fcl0VujXYLo1JX1wUs4XkoOvPf7bA0Sefp6WhsUbVTW3DbAnDXzJUl-xCfO_YMZcLHDmloV4U1BcJILveaoxB4CzotFM6k1pwiv8KmtRREqUrKscCREUnNrtFLLRYRRD3OlqWNw.6LYX6BL-bBAkJfGS2GBFf6TCXUY5hoXDSAiqgnegpwQ + - 9yVc5IaABnXZ3uPYVrR3CpNyH_YOTvve3RNpVfAnLHws7JYr5nFQgNf7IEciXAeRfUgDZvhA9aESaH9JYtkOkvq2-ezGRjE5XeuJKG3V2-iMZ9GEgT_OPCAL4MjO6i66AqGHWjb7l9Z3xa6KAGRSdQ.7d-3baSqvbCIMk7ftrUPGV8-aXgfn4tXLESAjs_x8us pragma: - no-cache request-id: - - 8b1f79a4-cd6a-47ac-8145-441c06ca7a74 + - 7ff5b12d-ecdf-4816-8c90-6e90a0d43bfa strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3148,9 +3170,9 @@ interactions: code: 200 message: OK - request: - body: '{"passwordCredentials": [{"startDate": "2019-04-16T22:57:05.45608Z", "endDate": - "2100-12-31T00:00:00.000Z", "keyId": "23dcd1a1-a874-4a7f-9bee-68ecc3238427", - "value": "verySecert123", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADQA"}]}' + body: '{"passwordCredentials": [{"startDate": "2019-05-26T04:21:38.13673Z", "endDate": + "2100-12-31T00:00:00.000Z", "keyId": "37bd074b-45d9-47df-931a-208aa3b674d6", + "value": "verysecretpwd123*", "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADQA"}]}' headers: Accept: - application/json @@ -3161,18 +3183,18 @@ interactions: Connection: - keep-alive Content-Length: - - '235' + - '239' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --id --password --end-date --credential-description User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -3182,19 +3204,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:05 GMT + - Sun, 26 May 2019 04:21:39 GMT duration: - - '2506794' + - '5501855' expires: - '-1' ocp-aad-diagnostics-server-name: - - iV69uKCb5MaK0i6e/qAYSNhEb9/mkPqAEJ2SdPTOYcM= + - IAJInqPI4lKNkkjmRxlvRCo0yCEDsc0J29jSC990RR4= ocp-aad-session-key: - - NX2z_rIy9AajjfD8yLWww3OYS-z4TvCWmz0NIF0fEiMoPMv_6xAHe2nTtmAg0BoYtCtJw5w_A0l6O3SBLxQZCK2CBSey-bA9WoF4Z-HBdnr_JjXAmCr-DiVDlyq72McuzjE2XpkvQKS9VE1kxfHdEA.cMxfxo9sBPHWBIxN_ooFDU5b-I-gl9HGMiygP2zNK68 + - AOXaiyyuaeXnKt2gBGho3dhj5HPW9Iut5IK_wWzcyfl9WNdQb4jmD3aXXRF7sYEYQroz8kcXfCuC3wEwPiGxMGQ5wUwHexw83gViI70Eetz5iWefvH3IYMFQDfQBzjps6Wp8oExfznEtNXCAo71opw.C00P-sMZmMcGkjTZdJ4ZOLLgKTLnTMj1pkcRD35Y-zY pragma: - no-cache request-id: - - a1a8cb84-4f62-4d47-8959-ea6ef81aced2 + - 5ebd3c10-3d39-4ee6-a17a-17ec60941adc strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3220,44 +3242,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:06 GMT + - Sun, 26 May 2019 04:21:40 GMT duration: - - '536539' + - '1001842' expires: - '-1' ocp-aad-diagnostics-server-name: - - lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI= + - WgqwaA7uWY22D4dquXQHPacPhyKRQEER6e6+ocAnyzw= ocp-aad-session-key: - - mS3GB7fG0MwSJAbPE883Dfdk9CtPEV9VfdjeqJobzw-W2mJBe5rWYpBZbSU84GFyT_gV0x4YUHpws83H6txx49RJAqVfHS2jucJgi3YzFgwSQlvu6wXV-3fK35QSodQnOGXt4oKXtDiG0A7qJnB-Tw.KMHKf0Xe1hKQEUIxgDJHEXKMUaFE8gnjbwaGjOUoa9o + - Y6856H1KGHsjFlhgoSrdqVJKNociynxL165uUJjsgcXx1PD9_d3e5Akr7QgLxdo7My83srg33X11nwbDMD-gVD0uhHAzlY8WhDx5NDWxmE9e0eBcg5EMz8AlTCVLuhoSDNm76IXHOgOIK2pNRI6usA.4NYnxqnSwlTqLosPx4-MrFcEqfNi303QdpyU-uuka0M pragma: - no-cache request-id: - - 700ac9ee-156a-4fa7-a697-65f4b32f2dae + - 31de22e7-3a26-4854-81f0-52138f4a9f25 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3283,44 +3305,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2196' + - '2193' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:07 GMT + - Sun, 26 May 2019 04:21:41 GMT duration: - - '570121' + - '950421' expires: - '-1' ocp-aad-diagnostics-server-name: - - WqKhWXvl1okXb47qljo0lPbR3WueJ7PneT8ez1L9elM= + - uuC4ojITP59NTpteQfARMJzW3Ur1U9x1ysBSRndTeew= ocp-aad-session-key: - - wit47SzjA2tY9Od5y9n4sj9i2-soZFqQ-huiq6O57VX61act_HonEf1KbYpwIUcJq2jLEKE6ON1Bq1Z16cY7V_nOZxHWNPx8zbXg-mcnlnaDjxndlNoaUa7VhtWKUYWOD7jrftQfcZg1FDQcsQmZYQ.thp1kGC-bx7NYfa-a4fNsnp0du37VQuk2DilwcBo35I + - SHy7-wpdYKcB9M8hC45g3DYWQ0O0_PnV2LEK9bVKg3LLOA8M4-KlstQhEXuUhxisqKBxLwSqbU49tFZQA1ozYgdHPq7RJyBMcFMWWyUgJAS5QcWqjxF_J0CXh00wZlUDvlIOr9e8cws6HVv6ecot8A.Sl9PNN__Evi-6JzFUEhfwP1PXbgJIJg3dYJuU7oe4gw pragma: - no-cache request-id: - - ea538ab7-2d3f-40fb-ab3b-1024129de56d + - 8a8c9016-5bc8-4864-81e1-31600407d835 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3346,44 +3368,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:07 GMT + - Sun, 26 May 2019 04:21:41 GMT duration: - - '550834' + - '778165' expires: - '-1' ocp-aad-diagnostics-server-name: - - ISbjmcjIryw8imO8hLdMu3pPCFK4JbNjsBFNQwzSQzU= + - nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk= ocp-aad-session-key: - - MBAkN6mF1Mp0vDeBC5fSOXuXNdwuLSijBzRhR-rp0MlrB3oLUzpaWzIxNVZ_WY9fjddcfe9Pht3-Fzi4G7XQZQTexIYlfhjKpgtYojdvWWEq_k8X4Ir-6RHtCNItn-0qyCCmifzl5r8TGLSbr-KWXA.fU4KlHnteKRVpP4NTtMycfv49pzKQC_o8MNLgdpHPg8 + - 7OzVIcrtDA-EwE5fJ_7ViBTTz_6vyaWMjQh0eFIqqyHShTLY2-HXzVW1HN9HUoTG_P0mA3lJMvwNV-o9yJhkR8KnMThKqNG8r3fnM-ie5PH4bXO8T_HaItCqLD-YLQtyAlepsX-st09OmsZG4kbgJg.5iCEK2bsZDMxHHHB6sv7rsO1Z8oK16IdXMF4ToNUltw pragma: - no-cache request-id: - - a95bf844-33aa-4343-b6ec-a0973ceb0a56 + - 2a0d99de-7336-4b1a-b28d-67ea31d8bb7b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3413,12 +3435,12 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -3428,19 +3450,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:07 GMT + - Sun, 26 May 2019 04:21:41 GMT duration: - - '2084564' + - '4429471' expires: - '-1' ocp-aad-diagnostics-server-name: - - lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI= + - QYQhfzFNSSm8b00C1v998memm10SZTVuigsYyWtHlfQ= ocp-aad-session-key: - - PaBwwV4crB2zpE26DXonzygSLf9QMU5Rh1w27XwiZody0O4WtdmUZQaUggh216TX0yiP5Qar3FLw19i-JqEgO-2MVt_9kYFqCNgGvg0XVCmsyJKgNm0HObe119p43hrMBZDE-Qc6UkcTMp9j71pkXw.6x9hO5sIhSzKDW4Li-dYZGFCJhW3v8XE0vPC1AQ0OqU + - -ejCU0LFD9A5gc4KooxosHNbgEkjZxTWt5O180zrIjeD6qE4vmhLHKEFKpmJNAraFswM91M4NubnvyHlpOUBr80F69Q_0kdIqdX2mzWoxRs-QnJS1DM4duWMYuyVZ14UjxDmJoFQ36L1edy4ui7ONA.9EggfvH8qolgx2MvmCZUOAhDb0qNxYaW6kf7gGNmin8 pragma: - no-cache request-id: - - 6035e289-8810-4abf-9b2c-899a7994a5d8 + - db0ebfb4-4b35-4842-80a4-93eb6d184196 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3466,44 +3488,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000001%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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2200' + - '2197' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:07 GMT + - Sun, 26 May 2019 04:21:42 GMT duration: - - '567727' + - '725706' expires: - '-1' ocp-aad-diagnostics-server-name: - - wIQemZ+5vqMn85aXsgJ+yzAwtRuiwLPflul5H4QC6Xs= + - zPeOuJeNLZ5N5CAKU8XN6jsJ5sC6cSv6Gh6WpNy3E8g= ocp-aad-session-key: - - SIT8gYFnCCEN6pCcR_jZWXY35S3qJ7-KTyRymgDxS7rvtyp9V3anlPCZsPCXlS9q6jill3RqEy0cBsRKdRZdDHZpKSn4ZxvUWRLdFe4GM8PnTr8mm9QmSgYu39d_ByQqvFYk_h12qfUOQvy_k0_fgQ.Zc84u4A_7lIcLHjO8JC7iGgX5sYW5RU8Igy2EXgY5vo + - TIjuz4XYsWeVzZrHyoUAorkUdaFASkO9e2HaTyWk-zpF0hDBLuLModiPy8E4mDgXJyTXf3FSG4M0mkcopwLJDgqnNItJ66v84xErVidl7uW638mZeY6iaDI1KI6rmNncEv7EEx6uC0h4SYJaiXxjVQ.Vo9klvD0DuKx6WMQ9picgDx9QmagYgjvi8Dg7EA-9oA pragma: - no-cache request-id: - - 603b3e14-13ac-4fe0-895d-ad14ce3c6970 + - 11ff620e-5235-4dfa-8062-2f52481a4a28 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3529,44 +3551,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2197' + - '2194' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:07 GMT + - Sun, 26 May 2019 04:21:42 GMT duration: - - '544940' + - '699769' expires: - '-1' ocp-aad-diagnostics-server-name: - - /ixj3U5tIdjsTF7jhrxO6gaWUFJzDmFQ2+8C7xVSngI= + - gumqaGrQuKMWKx5qR6D+EntZzHCdF7Gxbt/YYl8BbgU= ocp-aad-session-key: - - zbMaTZmaXJqCkAWzURRCP9sJVZdP_Hk-VAdylaSGYbt0ZdlU3wWaMGKV2oohDqmTElDEfa09W2QUhGKBhhH9ACOwOW5Tb85thIPpvN10dJx7wDzBc2IyULUUN527-99po8ry33rpt7E0lpGB-3jSCA.d9TZogtsX2t651-SWrnuqAJUY3uTOSJ6MvtiPpT1p-s + - sU1rp7ydLYX3JU6wS3Gj882QXJEkAYZP5rEqYPxYX5CGQ85NaLhEvjS_qZOqzpElXDY3ij4fDticW6UVJnA_2zTauwd3fnIJTCvqGg1RKsvd8KSbHu0v4J0Fdi3BoaKoSPuQoI7_Wp8cuvIPZyPySA.ynxIdgQAiXnGyKwDuCA3rh5ofrfdQFZfTuPKUaTHt_U pragma: - no-cache request-id: - - ccf1504c-2ccb-4f59-9100-56cad3515baf + - f66cef26-02b4-48fb-b4e4-a9f11dbb8104 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3592,44 +3614,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:08 GMT + - Sun, 26 May 2019 04:21:42 GMT duration: - - '611008' + - '736364' expires: - '-1' ocp-aad-diagnostics-server-name: - - 0sfE/ORXQruXagUwgN6LKCMJnfSNsPKIg39HCVmIqe8= + - 8FSoKn5C+xKnzMxVB24u9W0B3o/Ls6Mt3pri2fVg6OA= ocp-aad-session-key: - - Q8-T-D46UsJobN-Epni7TAedLQR4JX3xFDRswe1PHfDGdXfwYb6qUicxueJCFMZhrS1iSylReKTdRDFHA-QShqLL11Po_kP4fVMgIYTLUUIwTAb0KXpNkcQ0q4ZarYpzPmi6khzWH3pzWlp1NBUPTg.cBHwOxbL44CqGXHQXEjL5EGg6_RaZ_SQlPbyBQ3poVM + - 1f3xlhu9D9ghYdoEJfI7PiJfQTTIDmxKzqLMUg8QA2pvVfcceFOe13RXkI1MBkCEtEwqhNc4TKmoHxfiLJX863DXgxO0rmMMGLI3eUY7gq2AlTn6LgecPKSAJvb4aDthV2IS6PdMWerksCACXrv6cQ.y8qpeWlb9LdJdgLIm-Natqc7SIL5j1c-WgfymhL6oto pragma: - no-cache request-id: - - 2d7e3b83-b340-43dc-b2d0-d3d851268553 + - 6267a8d3-3d17-4675-992e-f603c62a6f07 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3655,44 +3677,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:08 GMT + - Sun, 26 May 2019 04:21:42 GMT duration: - - '517125' + - '858810' expires: - '-1' ocp-aad-diagnostics-server-name: - - EN3UzqyyMepVHkxrA0a3YivmCuo/FhGR5X1H+l7w28c= + - 79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo= ocp-aad-session-key: - - O3TRFWyoFtTyKkQN0fMg8_pWoiJ7fuMkaPKjkls2p8e5EoFd_-c_UHkFz3IbwBBiogtyFlxBnFG_2pZXbnPdZQuGYhyTUeleXhNac22QFjDIxVKMTUhO4fYqh77XP4W2bGCUzlcreSZjsHvmNsax6g.8MWHlPNWqP4_Ee02DqcpoCB6Ib60B79TrU-5SLU0kog + - TjVxPpOofjt_UDRSq6aGz-zFwKEEqlIYZy-l85AcvN6NCXD9IEe7EhfiWmMDtA1MonRE1__FD8YNAXYijDKO7f7tVB8oO0NUQTok8_jmoTlaYqO78cJMMR0T3rtPf4nXYfQybGzi2k4cTionFI64wQ.oShxzlMfQENoTBI4JTb2P2TfmND0sAK1_JQeYGvB4Us pragma: - no-cache request-id: - - 42c81409-84f8-4966-8fa5-57002e1622fd + - e73b8bc4-5e33-46cd-ac31-bceaa9ec2bae strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3718,44 +3740,44 @@ interactions: ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:09 GMT + - Sun, 26 May 2019 04:21:43 GMT duration: - - '598425' + - '2726575' expires: - '-1' ocp-aad-diagnostics-server-name: - - /ixj3U5tIdjsTF7jhrxO6gaWUFJzDmFQ2+8C7xVSngI= + - BXRgh3eu6YIFumaSZy7lFEXIwtoZR+AXCAi0P8igTHU= ocp-aad-session-key: - - GsAoCyJ1DVne-MiMcil3fflz75uu_ydS8zqYLfollZkirTuzQj_3fCUsGmkoRgp8_S4eglILZLnq_XnpFP8ifINgTRFnDn5rebcxkwy7dcNS3GYg0750H1gVULliLmylAWn9CaD3A76Mhu2Ue9JNZA.msbQAwxNF12Wo5PfNEbUPMKzt085Wc4OAn-MS4EkIb0 + - O0rW2PO2KMLT2QhCU7OeZgemSLbtg4TnP7fDCC9kpZt1p9roC7gnczTexocjSQtY1ZOAX-lnpFuC1IT4rxfPXDp3tczq0v6GeqTcrjcZmhHrDfItaPk59DXu64Uj4X7oVa73F3S_nfPIrGpik-YvwA.-ma_Rk5gOnQTaFGlpwZpLB868SOXyjK7k2AKYYMo-Lw pragma: - no-cache request-id: - - 539fcd4c-ba02-40b2-a11a-9147a8839d68 + - ac859ec8-32b7-44a5-a0ee-0060a6a1ab67 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3768,18 +3790,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"applicationTemplateId": null, "preferredSingleSignOnMode": null, "notificationEmailAddresses": - [], "preferredTokenSigningKeyEndDateTime": null, "samlSingleSignOnSettings": - null, "odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", - "signInAudience": "AzureADMyOrg", "addIns": [], "informationalUrls": {"termsOfService": - null, "support": null, "privacy": null, "marketing": null}, "odata.type": "Microsoft.DirectoryServices.ServicePrincipal", - "tokenEncryptionKeyId": null, "objectType": "ServicePrincipal", "accountEnabled": - "True", "alternativeNames": [], "appId": "6b4b7e52-4118-487a-9226-06e2546e6ce8", - "appRoleAssignmentRequired": true, "appRoles": [], "displayName": "cli-app-000001", - "homepage": "https://cli-app-000001", "keyCredentials": [], "passwordCredentials": - [], "publisherName": "AzureSDKTeam", "replyUrls": [], "servicePrincipalNames": - ["http://cli-app-000001", "6b4b7e52-4118-487a-9226-06e2546e6ce8"], "servicePrincipalType": - "Application", "tags": []}''' + body: '{"notificationEmailAddresses": [], "odata.type": "Microsoft.DirectoryServices.ServicePrincipal", + "addIns": [], "tokenEncryptionKeyId": null, "informationalUrls": {"termsOfService": + null, "support": null, "privacy": null, "marketing": null}, "samlSingleSignOnSettings": + null, "signInAudience": "AzureADMyOrg", "preferredSingleSignOnMode": null, "applicationTemplateId": + null, "preferredTokenSigningKeyEndDateTime": null, "odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", + "objectType": "ServicePrincipal", "accountEnabled": "True", "alternativeNames": + [], "appId": "6fef4e8f-554d-473b-8fa8-35cc86855b23", "appRoleAssignmentRequired": + true, "appRoles": [], "displayName": "cli-app-000001", "homepage": "https://cli-app-000001", + "keyCredentials": [], "passwordCredentials": [], "publisherName": "Microsoft", + "replyUrls": [], "servicePrincipalNames": ["http://cli-app-000001", "6fef4e8f-554d-473b-8fa8-35cc86855b23"], + "servicePrincipalType": "Application", "tags": []}' headers: Accept: - application/json @@ -3790,18 +3811,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1039' + - '1036' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --id --set User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?api-version=1.6 response: body: string: '' @@ -3811,19 +3832,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:08 GMT + - Sun, 26 May 2019 04:21:43 GMT duration: - - '1513229' + - '2612329' expires: - '-1' ocp-aad-diagnostics-server-name: - - DGINaJ3i+5SyHOHPqmgh7imYwy5/IDDbJ0mu/cXzqrE= + - ObADpVQOrMtGTj6DP71zqpcUOzkjrX9Nv84OPbrwK/c= ocp-aad-session-key: - - -x3fLtYbnSOYgUUqtm8hLG_nq0lbWaNER20HfNMFdvqR3d8Psmqy4oCsgp9r4Js9vksEe3Jy4COqcLEqTgoyvIjgjmY8Q1rncOqBcGXnxcmhjjE1Zrz_dRz2yTXO-a-Dy-xMGtw_gnRMEEsSNjkb9Q.hov9elOWHh8RMAfU-K573N8zDneEfoMg4xcivzjzdz4 + - HmGjCEXfX_8HIDRYM2HnSh959YqgITuK0Gwzv4NiyuwRPK2nQ0tpvVGxus1RIZS8gyBm8tMg33_7Ys1j-5lI7R_U-rHF3uyndmMW7tZyQyn8uO_klaHts3LyKVy9YHqq9w_7K_7SBPgs090lf_XZog.lkg2RI16BBHMeYdKnlHnzohP6v8MLS2MGuEErO9l4cA pragma: - no-cache request-id: - - dcfbc24e-9976-4069-8554-bf904f39e82d + - 4d3400fa-57c5-4e2e-8f01-2d3f5b9e484c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3849,44 +3870,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":true,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":true,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1676' + - '1673' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:09 GMT + - Sun, 26 May 2019 04:21:44 GMT duration: - - '538738' + - '789021' expires: - '-1' ocp-aad-diagnostics-server-name: - - QYQhfzFNSSm8b00C1v998memm10SZTVuigsYyWtHlfQ= + - 79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo= ocp-aad-session-key: - - UWDLuLYSooiX3mg2BnTdxOG9Nqp_sigVYxUyuVqgHEB7FakIxRpswdzanaXvCUxg55X4prJCia4Voj0XCRR-bA7uru9wVLDw2jPOAG0xKcHjWOoMzY9y3ERwWYD1KF8rCmKZ9T7QIIgZoYuS_-HRxA.384vGfZXTXWFWG2nBcuy4XP_w1twF_-knHzg_5fNvTk + - S1lOzt9AuzAKmnjphNqxr5_y8yaBxPT64Q8maQYKZC4dLoOLjXNzYdRu8hZbdzAe9Z8HyTSdCBVBFFkTE3m8EsNCHWBGFxQtdqyYqQcghLSQsjXbdmSZ0btZR8TFBG6Y5i-5wvnLtr1lDyHC3BE1bA.W63DC9I0mm6XWscvZgugmfhCDUotfau_ZyShTyzRnJ8 pragma: - no-cache request-id: - - 22d8fea4-28e6-461e-9926-33baa4775a0a + - c5ea8b28-706f-4c40-83c2-19ac626e8a13 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3912,44 +3933,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/c9e80265-8840-41b7-9715-f3bab7d375a2?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0f9788ca-fe86-46a9-8250-523c231ef304?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":"c9e80265-8840-41b7-9715-f3bab7d375a2","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":true,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0f9788ca-fe86-46a9-8250-523c231ef304","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":true,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6b4b7e52-4118-487a-9226-06e2546e6ce8"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000001","6fef4e8f-554d-473b-8fa8-35cc86855b23"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1673' + - '1670' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:09 GMT + - Sun, 26 May 2019 04:21:44 GMT duration: - - '540318' + - '755990' expires: - '-1' ocp-aad-diagnostics-server-name: - - LIsvepV0yWsv17jftCrqPcUrT8/sKGPKtFREgCo1I3k= + - Fo1QicrIhHj2KR1ZzWvNa2KLRHgOjpt7/hmcNDActAs= ocp-aad-session-key: - - JvLaxnh4gJklyx4o7QiiZ2s5UwNloPy1AKpTI_Fboam4yzCm0z6Yg2MJIBsr0HJszIIbeRUd_EAO91MfWEnrrrThFlZIuqlwgwwNetPnaa3p2-U6f4s_2R40UO6XlyV9jcqEj1id-qhouVskHj3JyQ.Ylzo4fv8mvxpRiLpj9pb_hvFpHBOqdj7uRGIfINyMNY + - mEsf1jHEp7didb-r_Iw53Z4UbuogJWbQ0ZSAUA8CgLkvaedeWSBIX32_gvDToya-DlhfYiPu0Mhd0c0J3kzsviiMCz1SrtDxHm8FhsuANu0vBSYOb3bLSjXwTYkGVYwrm-ABYhW6KyUWGsrxhcleTA.VedKvXp8CjQxC_qfl2uFVFEBVDaoOPuxlYsh-i7ZYpE pragma: - no-cache request-id: - - db2131e1-a0d1-4f79-bbba-0bbeefc64557 + - 8422a3a5-eb32-4202-bd93-eaf8af9063b2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3975,8 +3996,8 @@ interactions: ParameterSetName: - --name --skip-assignment --years User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET @@ -3996,19 +4017,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:10 GMT + - Sun, 26 May 2019 04:21:44 GMT duration: - - '498324' + - '642234' expires: - '-1' ocp-aad-diagnostics-server-name: - - +Vo1vaQr1J6K57B7CK/pVo20E97sFK7LOud+zxDHFNk= + - n89Keg3phw3NGk9ObUqYNFrQ8gN7RlXt/txUE8fYons= ocp-aad-session-key: - - UslnEkc1BvXS0khkITD3hq1B5u_SYwb0Rr0rmxTUCXYn9exxqMK_TjXXsfnKdaEY69kkrxLRfAV6af2JcPuHiOYoUQxBgOdIOe8iGPnT8yiyQLyDQdDBxCjJJVGM53VrD8Bv1bpQtgTTFIa_bR9cSQ.LzS-fMNhmNhmrEE9qOMfg4bS2i3RR2Jkk1ze2QQgybc + - yWfj3Tkp0AWA9xYBxITjn9OTfaMLnHBum-XXm4MgsHzxH5OWFCpNMiNQzema_2xx6RaPd3G7M_PaujbqjGDDGnBjD_LZ1L2_vznLcne2cFkf30PnocQbY-IN3-vdHcmoSMTojiTMm7BF44wPBtiptQ.2fVS6H1rVtbnP8fiYyjMt18jmzz6Fq6dzR1f9DJ86Rs pragma: - no-cache request-id: - - 12a2f904-93f2-4990-9a07-eace96abf7b0 + - 9f33f5b0-021c-4e29-888c-bfc4fdcdf6e7 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4034,8 +4055,8 @@ interactions: ParameterSetName: - --name --skip-assignment --years User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET @@ -4055,19 +4076,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:10 GMT + - Sun, 26 May 2019 04:21:45 GMT duration: - - '489322' + - '2491715' expires: - '-1' ocp-aad-diagnostics-server-name: - - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + - h7UB8YGKOzmHmjp1ZIS89QpqUVjy/3RInQUF7SgT0jk= ocp-aad-session-key: - - kHABP2gW5hcfsJBBAAPUTAkAspy7cUnbgJtXcNWKU9asLxDYHvfJt0dDk1kzd8pOE8fgUH02SZ8NUQhqxMbeNa80CRXRz1GNwV1eSBFsEmLmruD65-Dp9g-RtIt6D_S79oLC8Al2HbXmGQHmThvVsQ.NXfunex2RDJoB6Lr7G44XPVQ6dyKDe2vN2-3NQKQSTg + - 8bGunVP1Kf0G-6lYqFz3wq3s3MfiKZCkwXRDXUR_hqb8gF8Xv39lalXPhl-FCwr7NqgKYVBdPejCRjsfj9bgXX5I0iQ8Ew947We8kTD9qIsMfrud75nd6ZygMVG218w2HsX-pM6tXUSkPHqaCdAxcQ.LsDmG5zmpq39jC4L2qpK5iHBY9j2Gh0PobYcoHUS5Ao pragma: - no-cache request-id: - - e2f2d83d-7b50-4754-afb6-f38f4ba83325 + - e2bf2f27-6228-4714-a2fe-2ec3fafc1f83 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4080,11 +4101,11 @@ interactions: code: 200 message: OK - request: - body: 'b''{"availableToOtherTenants": false, "homepage": "https://cli-app-000002", - "passwordCredentials": [{"startDate": "2019-04-16T22:57:10.516645Z", "endDate": - "2029-04-16T22:57:10.516645Z", "keyId": "84e3d46d-6991-4e3a-9bfd-d285644bcc1a", - "value": "c402e774-d707-4402-b100-27a7fc4c1842", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], - "displayName": "cli-app-000002", "identifierUris": ["http://cli-app-000002"]}''' + body: '{"availableToOtherTenants": false, "homepage": "https://cli-app-000002", + "passwordCredentials": [{"startDate": "2019-05-26T04:21:44.352684Z", "endDate": + "2029-05-26T04:21:44.352684Z", "keyId": "38deb728-1406-4542-8b25-c3499a6f2f0a", + "value": "ReplacedSPPassword123*", "customKeyIdentifier": "//5yAGIAYQBjAA=="}], + "displayName": "cli-app-000002", "identifierUris": ["http://cli-app-000002"]}' headers: Accept: - application/json @@ -4101,47 +4122,69 @@ interactions: ParameterSetName: - --name --skip-assignment --years User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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":"0ed13368-bf18-499a-bd53-0b7b70673415","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000002","identifierUris":["http://cli-app-000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; - charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-04-16T22:57:10.516645Z","keyId":"84e3d46d-6991-4e3a-9bfd-d285644bcc1a","startDate":"2019-04-16T22:57:10.516645Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", + "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", + "objectId": "1b582440-abcc-4319-9981-d73074340efc", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "3cd84a2d-d9d6-4851-a52d-947875262442", + "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": + false, "displayName": "cli-app-000002", "errorUrl": null, "groupMembershipClaims": + null, "homepage": "https://cli-app-000002", "identifierUris": ["http://cli-app-000002"], + "informationalUrls": {"termsOfService": null, "support": null, "privacy": + null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": + [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": + "directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/logo", + "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/mainLogo", + "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, + "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": + "Allow the application to access cli-app-000002 on behalf of the signed-in + user.", "adminConsentDisplayName": "Access cli-app-000002", "id": "3c0f8fe1-10ed-44f5-911a-7031f9510958", + "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application + to access cli-app-000002 on your behalf.", "userConsentDisplayName": "Access + cli-app-000002", "value": "user_impersonation"}], "oauth2RequirePostResponse": + false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": + {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": + [{"customKeyIdentifier": "//5yAGIAYQBjAA==", "endDate": "2029-05-26T04:21:44.352684Z", + "keyId": "38deb728-1406-4542-8b25-c3499a6f2f0a", "startDate": "2019-05-26T04:21:44.352684Z", + "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": + "microsoft.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": + [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": + "AzureADMyOrg", "tokenEncryptionKeyId": null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2282' + - '2279' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:10 GMT + - Sun, 26 May 2019 04:21:46 GMT duration: - - '2505623' + - '7590091' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - ISbjmcjIryw8imO8hLdMu3pPCFK4JbNjsBFNQwzSQzU= + - x2woIFrQ+PupJNHtrFjquaK+WS/DcGV0VFd5xSHAoJ0= ocp-aad-session-key: - - JcOfsqgG2zBcLgAL_PjASb9oqXZEEbjaKekK9t571Byua1JCXeYyqSiVEFtsAduNgBGxIqlhBXp9ap5ifIMaRSY2fTujRHqQW-fWPYt4w2qtRg5ewcWna0SG__9Dprw7QLus-FCNunaYg1XdPr1vkg._vtOKfxI8Sxkoy79QXMBzYDWiaNxn77Q3jUtBWvg5Ms + - -YdOn5TwmLkyzCUXslq-EfapMrzcrKs0oPaKUWxb4zD3JMuB0urKwmgn5oohfGKxAxwxA8JkT1zDNy__Cmfjc7ms4xnYCkITk8m0m3iEvuUM0eGRR0heLx54uOPJ2Zb3o3gzmIsmQ9aHrbfucOoQSQ.E4ri5BlFWp_N8NKSYOCh_uakGGam6yGOT2RV2QuM1pM pragma: - no-cache request-id: - - c1e1bb53-a763-47ad-b7ae-4ca07b41de8b + - dcc17024-5e6f-439c-8035-8255858c195b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4154,7 +4197,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "23dbc274-4d54-478c-bf79-d74a89e3fcb4"}' + body: '{"accountEnabled": "True", "appId": "3cd84a2d-d9d6-4851-a52d-947875262442"}' headers: Accept: - application/json @@ -4171,46 +4214,46 @@ interactions: ParameterSetName: - --name --skip-assignment --years User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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":"28a744ca-c96c-4d75-b4d4-4831b656d0d5","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0cabdd1d-60ff-4baa-a927-4883073cd4e0","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"3cd84a2d-d9d6-4851-a52d-947875262442","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000002","id":"3c0f8fe1-10ed-44f5-911a-7031f9510958","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["23dbc274-4d54-478c-bf79-d74a89e3fcb4","http://cli-app-000002"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["3cd84a2d-d9d6-4851-a52d-947875262442","http://cli-app-000002"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:10 GMT + - Sun, 26 May 2019 04:21:46 GMT duration: - - '1682341' + - '4424846' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/28a744ca-c96c-4d75-b4d4-4831b656d0d5/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/0cabdd1d-60ff-4baa-a927-4883073cd4e0/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - rFMv6jCt7k8n9zj2NyMLkO1fEa5ijjfeyD4ZP3WWKYs= + - CNP5kG643VEgWAuQgd9JNUJQ6e3AstHM9HY6G3AdeCY= ocp-aad-session-key: - - YlW0V6e9XTWRf6l2r2Gyg9q54s1TvNQ-tx1GmYw1MLJrO9y0kC-b_sQmE27uLYLa6R5JaRa3debHXbZOnL-J9799FtBrXKuhmlFY9JU6NuJgm5QGMiqJdLU59IspzLBdrGxJtV4PQ92Of9tcbDdi0w.2QrkWvJDe3o0-TVkW4WCf45E0y7zywPAx6jZ3B5-8dQ + - mvY81KEldW88JUEbbx0ut8y3fQZJ6-ytoFPwRYB07URQy3k5oif3O2eBJyIjpWxAlZDOSvULWs4V-EGWjhb98lMbVdcOqzktgJeOfmw3phF90GzjsnUssYJ1RKd-mMhqO2yOkPRC2VFk_0vAgaDbsw.PtyftBJFMRb1Po6QhUvvdY4_7vecyQiIC9vWuow_8Gw pragma: - no-cache request-id: - - 6cd2a163-d6d3-47c6-8c01-8eb85efa9558 + - c1007c04-d71d-4bf5-b9db-c5b66081e867 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4236,44 +4279,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000002%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":"28a744ca-c96c-4d75-b4d4-4831b656d0d5","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0cabdd1d-60ff-4baa-a927-4883073cd4e0","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"3cd84a2d-d9d6-4851-a52d-947875262442","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000002","id":"3c0f8fe1-10ed-44f5-911a-7031f9510958","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000002","23dbc274-4d54-478c-bf79-d74a89e3fcb4"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000002","3cd84a2d-d9d6-4851-a52d-947875262442"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '1674' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:11 GMT + - Sun, 26 May 2019 04:21:47 GMT duration: - - '587996' + - '876793' expires: - '-1' ocp-aad-diagnostics-server-name: - - qS43F4iLBOJT6RGkkYs1XEqkZVQTuWFJkKZZm/yzJso= + - HEPAm0tyongGpYycSw509UTFJ4dZAtir7lD0xyk+LYQ= ocp-aad-session-key: - - ifbVgv_vY8ayj3FPWgosheDsI_vJVDyNbl4cZa_VkL2ib8pq7LDvMUcZZSJ6LLaGwBJDfTgScdWO9oN8703u9nV1jm_x_jYC3ZzBeQKkWAuyE5UQukxDH60ReRJ_bqipUcS7yUkqGJibEkT226seQw._FE9-fBk1UTK8LjU2YNFV5gKIS64JI-a3e63zaGBn08 + - 72hkecf0J9zDln2A1AtAt5SRbFUlOjR_Dk8NKj5FAoxDAa8t6PFceXzItnuSULM5Sly0iNi4jk5QYx9v8sdpxt9bqBisiETyfM61xqCndEAKTfKkT9qUjXUYurm1LqUT7bR4e1tV1TR6MbqrKguncg.MPsceqw3W7e61aX30kUvx79SGj_NKGF4sFISxSwt4Co pragma: - no-cache request-id: - - 9aa23793-4cec-4243-bbaa-ae0062e473fd + - 686996fb-e939-452e-92d0-928630c631de strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4299,44 +4342,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/28a744ca-c96c-4d75-b4d4-4831b656d0d5?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0cabdd1d-60ff-4baa-a927-4883073cd4e0?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":"28a744ca-c96c-4d75-b4d4-4831b656d0d5","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"0cabdd1d-60ff-4baa-a927-4883073cd4e0","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000002","appId":"3cd84a2d-d9d6-4851-a52d-947875262442","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000002","errorUrl":null,"homepage":"https://cli-app-000002","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000002","id":"3c0f8fe1-10ed-44f5-911a-7031f9510958","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000002","23dbc274-4d54-478c-bf79-d74a89e3fcb4"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + cli-app-000002","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli-app-000002","3cd84a2d-d9d6-4851-a52d-947875262442"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '1671' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:11 GMT + - Sun, 26 May 2019 04:21:48 GMT duration: - - '630323' + - '1005360' expires: - '-1' ocp-aad-diagnostics-server-name: - - 6fg+R91TudKTiH8ukAn6DjKOEcAdu3Q+jEgq6nJAxfA= + - x4r7b1LY8ujvq+pFqJ8KGLwz1kogO1LaK3X1LJBmIWM= ocp-aad-session-key: - - ZT5qVZakZqB-uRmN1pi8CKIFKCHykzMRwj-RBFYQTRGv7v0pk-I9udqw51MzRgL5ZNIOqHpNxD4qZdHnWGWO0XH2FoW9nXyZ3OyLfp4M43WJLrjdDKixnuMMt5SFOahM-hTIEVvnMpVKT79sRYL4MA.FxP34XuUOZrPPwQXxKQjQsglbc6ecDF9ln2dy8xYqMs + - PrmD2yWfDMRgww3MN2b4eqWOSA9aXya586Zq97kdqc2mvuWhfitqeRk4m214jwCbXAjhxu7O5u5UpTuD5zmf-TA0hlRc94FkAxPoNVh5O85dbINFB0f57nFAErGDp404X8NLpNxEF5E3tHh00spLQQ.HVdIaA4FlppJgcsLCNCgnIf2zLsF4uuDdH_4GrhlW00 pragma: - no-cache request-id: - - 83dc1d6a-4410-4825-8726-856737d33a4a + - e23873c9-2dcd-4a92-a622-3bebe49f8380 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4362,44 +4405,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 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%2Fcli-app-000002%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":"0ed13368-bf18-499a-bd53-0b7b70673415","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000002","identifierUris":["http://cli-app-000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"1b582440-abcc-4319-9981-d73074340efc","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"3cd84a2d-d9d6-4851-a52d-947875262442","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000002","identifierUris":["http://cli-app-000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000002","id":"3c0f8fe1-10ed-44f5-911a-7031f9510958","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-04-16T22:57:10.516645Z","keyId":"84e3d46d-6991-4e3a-9bfd-d285644bcc1a","startDate":"2019-04-16T22:57:10.516645Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-05-26T04:21:44.352684Z","keyId":"38deb728-1406-4542-8b25-c3499a6f2f0a","startDate":"2019-05-26T04:21:44.352684Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:12 GMT + - Sun, 26 May 2019 04:21:48 GMT duration: - - '559968' + - '741253' expires: - '-1' ocp-aad-diagnostics-server-name: - - YF0m9VfRaICKZ7BaPBWJYnZAznG+rGxvI3UhMCQZVCo= + - Lvh0/G78olXOk4T0L5DDgaqMqxW05ALila/UzU46pxE= ocp-aad-session-key: - - _-4hhrtS-SPp_yMq8EtRYb-ByfmKOB-C4WftJezKdGW2ofACETmtGRBkeBfC1eXldMSp9Oo7gTjzzWceA_ZlJe0lSVB7xhKI1xBFOyTehm6qSouDbYulyqTXBpu3TYXviuOAjFUv5j7oBuQoTdbqcg.07z9vFLtTLSX68D4FkdjxGq6Rfi1uL-VeFQJFaOgYXw + - EhyiVbcKLPoCzIHcG8FlPfjMALu_Qs5jrtpucVdtaeQt4YSgGj4CMMgnbYzStiV5fNbBgNkRuWm6LYInCGqyGUn1dUgGZE9e6j0ccZoSd-hvW4n-AamHnemM2CLvKaiyl65FdmZ-GddNnQ8X5DvQ1w.9UTZTKXryJ93RTZAtvZ8PAm1LGD5anVXIUNW46Ob-Gg pragma: - no-cache request-id: - - 5e3a0873-7940-4b44-8c67-da3c216031d8 + - a03ec3e0-b49e-4b7f-a7eb-afc0bb3266d1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4425,15 +4468,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/0ed13368-bf18-499a-bd53-0b7b70673415/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/1b582440-abcc-4319-9981-d73074340efc/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-04-16T22:57:10.516645Z","keyId":"84e3d46d-6991-4e3a-9bfd-d285644bcc1a","startDate":"2019-04-16T22:57:10.516645Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-05-26T04:21:44.352684Z","keyId":"38deb728-1406-4542-8b25-c3499a6f2f0a","startDate":"2019-05-26T04:21:44.352684Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -4446,19 +4489,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:12 GMT + - Sun, 26 May 2019 04:21:48 GMT duration: - - '531255' + - '818815' expires: - '-1' ocp-aad-diagnostics-server-name: - - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= + - Y26uuwjCYbnc4rIq9EZ3vl9kDH8i6IbQyMuXjLCVxgw= ocp-aad-session-key: - - vqPG8IXOv74Jq0rhi43HozDpFU6rvyv8sw6X0gYUWE8GW7FZ-OY2ocmCSX8ZpzZ3GSWRDdbF6wSUlW_kw8VWxwI6QXUJo7OmgmGKlbHZ8tfZ9PgjR0pPvv3HbWQQAUorN33KF7mj5X7KdxXsIr4xNQ.0C5Z-iy94I2J0DeO75fUgUF3Li9O3QHo7MjFkh9SnRU + - HTdRIo0xavbGIXBkWG7L0xW5HVFw0y2h2YJH9wPjCds2SJ1Q4FFxaBKflQDUdGc0r9arIw1av8emIqf-SqgDyTqtsgYzh08MdRe83kQnh0mJVq7AOFqtaiyivVr4WZfkhcd29WvaF00NxKTjTSwXlQ.nn8_jlbO5OUoITpmtMuiwTafL4lfi0ldooolWh2rXJ8 pragma: - no-cache request-id: - - d4c3d0c3-dc18-447b-a990-82eb652ca3df + - b23f8f19-6ea1-4d83-b75c-a52f6a1d69ea strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4484,12 +4527,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4505,19 +4548,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:12 GMT + - Sun, 26 May 2019 04:21:50 GMT duration: - - '503191' + - '3023234' expires: - '-1' ocp-aad-diagnostics-server-name: - - 03tJtVtrK59o2WrrDjJFasNQO9BoGoGL+dG53QSLpQQ= + - DbCL/cZ6FCahCtM0BWg5TmIuclIGVHOfryNcujB+Ao4= ocp-aad-session-key: - - 1xT39R7YqjP4CUBRQuriQh5fl3szTOpAvqAnIJeyWJpa6g_h0p3n0I6fK9EfcbmvP8AaQ5k6ZYIpk5ErWBhTAqwpRVTwBsz8GbYGr5m_Egs7zsXyWql06ym4MgST8S-Lu1H7xBZaVb9vGU9jhrF0NA.VJn2tgVHvU_24_Q8QHMbWVJub1D9nHX2AcOgz01Ahd0 + - 4sIhsHHA7bp_I-Ao3hIWEoWNCDbnl5i_hkHRxPXbKf02QaeyWPxGwmygGPOwU_1M1VmyjvGjmbjITGsomicnhVoYShgEPCAOSoTFAwWZI0U3LZSw_1cSeOt9DOzzlD8lEboA0-ipSO-LEMi5Fw0T4g._aEegp70NNbTFi15npNm6lBuyK-a7PBQgjyZ8phcNoo pragma: - no-cache request-id: - - 276241a1-be8b-4cd0-84af-2583549fa5bc + - 5ab7ec10-e4af-4e28-a81f-7b2f957cc691 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4543,44 +4586,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276b4b7e52-4118-487a-9226-06e2546e6ce8%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%276fef4e8f-554d-473b-8fa8-35cc86855b23%27&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":"fa35452d-df23-4647-911f-3700226dc095","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6b4b7e52-4118-487a-9226-06e2546e6ce8","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/fa35452d-df23-4647-911f-3700226dc095/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"ee36666c-68da-4196-ae4f-1a38956a777c","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"6fef4e8f-554d-473b-8fa8-35cc86855b23","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000001","errorUrl":null,"groupMembershipClaims":"All","homepage":"https://cli-app-000001","identifierUris":["http://cli-app-000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/ee36666c-68da-4196-ae4f-1a38956a777c/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"fe09f758-1eda-454f-bb82-1d5ace9e01c2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"4ee149fc-824e-40f0-8df7-01af9a902dc5","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000001 on your behalf.","userConsentDisplayName":"Access - cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"23dcd1a1-a874-4a7f-9bee-68ecc3238427","startDate":"2019-04-16T22:57:05.45608Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADQA","endDate":"2100-12-31T00:00:00Z","keyId":"37bd074b-45d9-47df-931a-208aa3b674d6","startDate":"2019-05-26T04:21:38.13673Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2200' + - '2197' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:12 GMT + - Sun, 26 May 2019 04:21:50 GMT duration: - - '582447' + - '751947' expires: - '-1' ocp-aad-diagnostics-server-name: - - QYQhfzFNSSm8b00C1v998memm10SZTVuigsYyWtHlfQ= + - CLBFhp12uVA5Nnh6MG2VC8aF6kYj6BwyK0Y6WAoeTzc= ocp-aad-session-key: - - gL4597ttfRAoeu6UUfv4noNkaBq-A4xX5NXfAfBtU8VkaAo0xie_zLjTWfTVw6TY1m8s_YG7aSDSEQ4D1rnJTw4d8T-_No6c1moYUG3Q-iFEC2TZ-CxeJuBEZsISPg0jPfucqHd6Z8mCahhKImLQWw.jb5i70yjJNwkqPJKvA8CkIoyBaKPEprKMch6G75RDCE + - oCTznJDQ81JZzxgfONVabR4D_tNw6wHxyp-YOPUcTk1jGnrecV03Yzau4hSw27DAXOFpfZiiu_1eWxah3a0kEtyb0aD3S9_L2Qcb0qtZlzcYe_48KShWoliv_ekQdEW2HlQIUTE-XLSR1YlL0fEiDA.C_fv-hFq43sgww9tCV-e9L0G1FSxlU6JMPTXAjl6_bI pragma: - no-cache request-id: - - a68fca27-4cf2-4c14-b449-9f066b7c0099 + - 2021dc86-090b-4279-b9b0-4c2ffc811cde strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4608,12 +4651,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/fa35452d-df23-4647-911f-3700226dc095?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/ee36666c-68da-4196-ae4f-1a38956a777c?api-version=1.6 response: body: string: '' @@ -4623,19 +4666,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:13 GMT + - Sun, 26 May 2019 04:21:51 GMT duration: - - '1818110' + - '4235946' expires: - '-1' ocp-aad-diagnostics-server-name: - - fQLJJo2NQKA1MEYhE9K05hCw7w6tp5qp0L6SHCVm0xw= + - 06P6omLZNNhtkLk8HqTu9pI/L4tlbjNI68+dmcAZdUI= ocp-aad-session-key: - - cYHw-3JW5a_q2iB3LL0g_aMO_i3OSvlo43WYzsTCNR1ZrTccX8DMKj3eapF9Tp_A7ZkA8YAy0ZZYql0Lw6iCCsFosc77pP0Os3HKlGQ5FTipyVsUf-JF8HQ6uO57QSOboyOCN6MaR_6VZTxgZoJ95w.TZpPT8gf_vblliWflTAXKDOa2GmAJNCOoKIpriJEDQs + - hRxyi7OkERlr9VkyvfTjgTFBLb3Xx6SXWKsQKaivhbVCGkNfxAyJol9KobYnKno4_oLe6JzE0itxmCtcplv0IwtuTOLXi6NqRfu04XOxEdZSxZdnEXvk00f2NAePPifaxu-KTqJ7x8vkTYRxnutGew.RiJ-ELcfqBg6BpZV7hJydEmcGsLiLUDNrgefpQHIiQ8 pragma: - no-cache request-id: - - b34c710f-18ba-4937-ac98-50f193ee6fb5 + - 000727db-a9a5-41ee-b4ea-d3e6c6337865 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4661,12 +4704,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%2723dbc274-4d54-478c-bf79-d74a89e3fcb4%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%273cd84a2d-d9d6-4851-a52d-947875262442%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4682,19 +4725,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:13 GMT + - Sun, 26 May 2019 04:21:52 GMT duration: - - '475249' + - '810471' expires: - '-1' ocp-aad-diagnostics-server-name: - - 1Sw93lDg24rWQqiNnfxG0tmtbhuAcSA9P0X1MIiqPnE= + - K2ZEp5JFzjLS8X+ERXVqxvR0agNqqe7QIkfVrc8aXxg= ocp-aad-session-key: - - XxvYgH_Toqn3kUZjBJPRRZDoOmgnM3oQxW4w4uH2od9Uvm5u_DHHMvnU1ETL7a0zDmr5SQ2CCNaVRfWO2O2SiBBzojKMHdbiNurBIsi7tiCSNfj1jVy45xKXzm0-hcVi4nQmm_QbUWTPkJx2ryrqdw.VbhZo5Cz2KNB0TuOtr3CLY4PCIzTGA7evrZL5gt2qvY + - YhQ4C2NFM_ckim9AZyaMMOzwgUe4-zHZl25AiLhAgAFaA2q5G3X-shc8lSlYBsPPfrRdNP5p6PdJGpZz0qiKcfVio-hom8dZ6SoJrLLeDeadCWt1lzenEW3PAHfXSFO7vMwjW_1ZAHPlpd84tciWuQ.nJ_wM2z1CEjS4elv-4bh8JhzJMgHb6ny71We_yhRox4 pragma: - no-cache request-id: - - 150982d7-6032-4c3c-911e-220e82fab081 + - d4e58dd3-eab5-491b-b00e-0a5403422003 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4720,44 +4763,44 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%2723dbc274-4d54-478c-bf79-d74a89e3fcb4%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%273cd84a2d-d9d6-4851-a52d-947875262442%27&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":"0ed13368-bf18-499a-bd53-0b7b70673415","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"23dbc274-4d54-478c-bf79-d74a89e3fcb4","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000002","identifierUris":["http://cli-app-000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/0ed13368-bf18-499a-bd53-0b7b70673415/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"1b582440-abcc-4319-9981-d73074340efc","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"3cd84a2d-d9d6-4851-a52d-947875262442","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli-app-000002","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli-app-000002","identifierUris":["http://cli-app-000002"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/1b582440-abcc-4319-9981-d73074340efc/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000002 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000002","id":"dd61e6f0-941f-49d2-9141-51a3c46e7cd1","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000002","id":"3c0f8fe1-10ed-44f5-911a-7031f9510958","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access cli-app-000002 on your behalf.","userConsentDisplayName":"Access - cli-app-000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-04-16T22:57:10.516645Z","keyId":"84e3d46d-6991-4e3a-9bfd-d285644bcc1a","startDate":"2019-04-16T22:57:10.516645Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + cli-app-000002","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2029-05-26T04:21:44.352684Z","keyId":"38deb728-1406-4542-8b25-c3499a6f2f0a","startDate":"2019-05-26T04:21:44.352684Z","value":null}],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2199' + - '2196' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 22:57:13 GMT + - Sun, 26 May 2019 04:21:52 GMT duration: - - '544938' + - '2457378' expires: - '-1' ocp-aad-diagnostics-server-name: - - bjwfCHqIrtGB+z8zTamk9qnExmWtx2/qGwNbbFSoSzc= + - ZGx5BTxWx3rJ0qV6fN7KouGYhLhktis4+Etrku5CN4A= ocp-aad-session-key: - - fMLJPMtoRZrjue4jnqOCXJ2G3umvGa2WzO952yonhRhyRyxLks4xVkOKVFZiRJMfS9JMZe37Z2fejsPVNVDLHpgHFq3IIYJMjWjyFhx_HL8f75cqASxmhHiSiKCqA5HL8r9LXJfnLltoG6xskvgIfA.ixGcgSR0Sw-WrDJlUg-g5OyIG_sCHzCrzd27GJLFe84 + - jnlozcsHOcv03UuVPvteXMI5x2kpRGe2hpuxcvoOGtFKmE_kzHIOjVzZ0xJLj9K6igJ29H7q5NbsK3UrJoAmjPCHE_-G64NKTlRdRH32sbdaMpDyU-V8gs636Qc3nRu3xgN4ZPX1wEwZ6ihpZW2R2A.RA-P53VYWoEi5dfSckDrXJ0nOMRqXC9LowSzM42zQ5Y pragma: - no-cache request-id: - - 1537a28e-04b3-4d8c-bfb1-ead06509911a + - 1534b28d-bc31-493b-a54a-6517f2a9db51 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4785,12 +4828,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.64 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/0ed13368-bf18-499a-bd53-0b7b70673415?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/1b582440-abcc-4319-9981-d73074340efc?api-version=1.6 response: body: string: '' @@ -4800,19 +4843,19 @@ interactions: cache-control: - no-cache date: - - Tue, 16 Apr 2019 22:57:13 GMT + - Sun, 26 May 2019 04:21:52 GMT duration: - - '1921656' + - '3700373' expires: - '-1' ocp-aad-diagnostics-server-name: - - tAfU859m9TMv99RRajlEbUsi/5BnvcvCFalsXAVDmG0= + - k6DXA5yNyWftcpEJP1tvwNHdPg4ncMNCM8cbCEznAdU= ocp-aad-session-key: - - HuWj_yZVbKoSzZOdlhEJi7_8fmvBzzXXVWqYB4aOQkp5OY16E4GHBf-rqmh5-okmLM0CTz-0x87E-Cy7l7HhEI3bsf7jbIQc8hsmp3kaNmqqIeQSNsGLDWxU1GBZQJMN1J0wTqlFsQtAmdTIGKhSTw.PUvJ3BmV5P6BYO68b12C3uFinaHqZVNSFekU8bHUyZQ + - g0tiNNBeukezTDLAI609dm1jTkZLcWbWwECC0DRqmPR3nsUw4Izv-tmFoV4XD2ZLK3gil9Uh2u01b2N3imPhhNUJGxJCHv1mpENAojvAe-8zTyTjjgpCHrkPdgQXQUEC8D2H1ftsaWJdpX_K6lq67g.uuq3hl1-LizFFH02SVbxOQjRdXksOLnyoE88LHTgbqg pragma: - no-cache request-id: - - e76b3d55-7f0b-4f6c-9bac-abd6ee0f77d4 + - 708b2198-1a15-40c0-96d6-c9fd3b80f2c0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_graph.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_graph.py index 89ede6de033..ecb326c0f4d 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_graph.py +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_graph.py @@ -8,9 +8,8 @@ import datetime import dateutil import dateutil.parser -from msrest.serialization import TZ_UTC from azure_devtools.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, AADGraphUserReplacer, MOCKED_USER_NAME +from azure.cli.testsdk import ScenarioTest, AADGraphUserReplacer, MOCKED_USER_NAME class ServicePrincipalExpressCreateScenarioTest(ScenarioTest): @@ -375,17 +374,19 @@ def test_graph_app_cred_e2e(self): self.kwargs = { 'display_name': self.create_random_name('cli-app-', 15), 'display_name2': self.create_random_name('cli-app-', 15), + 'test_pwd': 'verysecretpwd123*' } self.kwargs['app'] = 'http://' + self.kwargs['display_name'] self.kwargs['app2'] = 'http://' + self.kwargs['display_name2'] app_id = None + app_id2 = None try: result = self.cmd('ad sp create-for-rbac --name {display_name} --skip-assignment').get_output_in_json() app_id = result['appId'] result = self.cmd('ad sp credential list --id {app}').get_output_in_json() key_id = result[0]['keyId'] - self.cmd('ad sp credential reset -n {app} --password verySecert123 --append --credential-description newCred1') + self.cmd('ad sp credential reset -n {app} --password {test_pwd} --append --credential-description newCred1') self.cmd('ad sp credential list --id {app}', checks=[ self.check('length([*])', 2), self.check('[0].customKeyIdentifier', 'newCred1'), @@ -398,7 +399,7 @@ def test_graph_app_cred_e2e(self): # try the same through app commands result = self.cmd('ad app credential list --id {app}', checks=self.check('length([*])', 1)).get_output_in_json() key_id = result[0]['keyId'] - self.cmd('ad app credential reset --id {app} --password verySecert123 --append --credential-description newCred2') + self.cmd('ad app credential reset --id {app} --password {test_pwd} --append --credential-description newCred2') result = self.cmd('ad app credential list --id {app}', checks=[ self.check('length([*])', 2), self.check('[0].customKeyIdentifier', 'newCred2'), @@ -408,8 +409,8 @@ def test_graph_app_cred_e2e(self): self.cmd('ad app credential list --id {app}', checks=self.check('length([*])', 1)) # try use --end-date - self.cmd('ad sp credential reset -n {app} --password verySecert123 --end-date "2100-12-31T11:59:59+00:00" --credential-description newCred3') - self.cmd('ad app credential reset --id {app} --password verySecert123 --end-date "2100-12-31" --credential-description newCred4') + self.cmd('ad sp credential reset -n {app} --password {test_pwd} --end-date "2100-12-31T11:59:59+00:00" --credential-description newCred3') + self.cmd('ad app credential reset --id {app} --password {test_pwd} --end-date "2100-12-31" --credential-description newCred4') # ensure we can update other properties #7728 self.cmd('ad app update --id {app} --set groupMembershipClaims=All') diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role.py index 584d3d11883..75213a73d2c 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role.py +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/latest/test_role.py @@ -305,8 +305,18 @@ def test_role_assignment_handle_conflicted_assignments(self, resource_group): self.cmd('ad user create --display-name tester123 --password Test123456789 --user-principal-name {upn}') time.sleep(15) # By-design, it takes some time for RBAC system propagated with graph object change + base_dir = os.curdir try: - self.cmd('configure --default group=' + resource_group) + temp_dir = self.create_temp_dir() + os.chdir(temp_dir) + self.cmd('configure --default group={rg} --scope local') + local_defaults_config = self.cmd('configure --list-defaults --scope local', checks=[ + self.check('length([])', 1), + self.check('[0].name', 'group'), + self.check('[0].value', '{rg}') + ]).get_output_in_json() + self.assertTrue(temp_dir.lower() in local_defaults_config[0]['source'].lower()) + # test role assignments on a resource group rg_id = self.cmd('group show -n {rg}').get_output_in_json()['id'] self.cmd('role assignment create --assignee {upn} --role reader --scope ' + rg_id) @@ -314,7 +324,8 @@ def test_role_assignment_handle_conflicted_assignments(self, resource_group): self.cmd('role assignment delete --assignee {upn} --role reader --scope ' + rg_id) self.cmd('role assignment list --assignee {upn} --role reader --scope ' + rg_id, checks=self.check('length([])', 0)) finally: - self.cmd('configure --default group=""') + self.cmd('configure --default group="" --scope local') + os.chdir(os.path.basename(base_dir)) self.cmd('ad user delete --upn-or-object-id {upn}') @ResourceGroupPreparer(name_prefix='cli_role_assign') diff --git a/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/recordings/test_security_tasks.yaml b/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/recordings/test_security_tasks.yaml index 22f0800fa0a..5e0e1be8b1c 100644 --- a/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/recordings/test_security_tasks.yaml +++ b/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/recordings/test_security_tasks.yaml @@ -2,504 +2,404 @@ interactions: - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task list] - Connection: [keep-alive] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task list + Connection: + - keep-alive + 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-security/0.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/providers/Microsoft.Security/locations?api-version=2015-06-01-preview response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}'} + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}' headers: - cache-control: [no-cache] - content-length: ['222'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:51 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [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-resource-requests: ['99'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '222' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:11:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - 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-resource-requests: + - '99' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task list] - Connection: [keep-alive] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task list + Connection: + - keep-alive + 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-security/0.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/providers/Microsoft.Security/tasks?api-version=2015-06-01-preview response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/05e4625a-3ba1-5ce5-badc-bde930a8becd","name":"05e4625a-3ba1-5ce5-badc-bde930a8becd","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b75811fe-ac22-4171-9511-27fec5177351","baselineName":"Windows - Firewall: Domain: Allow unicast response","baselineCceId":"AZ-WIN-00088","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b75811fe-ac22-4171-9511-27fec5177351","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/08357a1e-c534-756f-cbb9-7b45e73f3137","name":"08357a1e-c534-756f-cbb9-7b45e73f3137","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Dismissed","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-09T17:45:42.7431861Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"7e4d9fe1-eb3f-49ac-bb5b-d417df7e6d6c","baselineName":"Ensure - ''Audit User Account Management'' is set to ''Success and Failure''","baselineCceId":"CCE-37856-2","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_7e4d9fe1-eb3f-49ac-bb5b-d417df7e6d6c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/0876feac-8c60-3fef-d95e-2c43b333ff14","name":"0876feac-8c60-3fef-d95e-2c43b333ff14","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-12T20:24:32.6732395Z","lastStateChangeTimeUtc":"2018-12-13T20:24:31.710038Z","securityTaskParameters":{"healthStatus":"SignaturesOutOfDate","totalMachines":1,"workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"name":"Antimalware - Health Issues","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_SignaturesOutOfDate","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/09ea0fa9-ce5a-d703-e17b-08f1d5246e2c","name":"09ea0fa9-ce5a-d703-e17b-08f1d5246e2c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T20:38:37.8557035Z","lastStateChangeTimeUtc":"2018-07-10T20:38:37.8557035Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"d9ed5e76-2348-4409-94dd-c76352407fe8","baselineName":"Disable - support for RDS.","baselineCceId":"CCE-14027-7","osName":"Linux","severity":"Warning","ruleType":"Command","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_d9ed5e76-2348-4409-94dd-c76352407fe8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/0b7a1913-756e-d118-d36e-df9452c0d760","name":"0b7a1913-756e-d118-d36e-df9452c0d760","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"5fc2dc21-a630-45ee-a62d-5e3d87a45a84","baselineName":"Ensure - ''Disallow WinRM from storing RunAs credentials'' is set to ''Enabled''","baselineCceId":"CCE-36000-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_5fc2dc21-a630-45ee-a62d-5e3d87a45a84","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/12b4f7f5-0fcd-4f54-afc4-adca05e5e4a5","name":"12b4f7f5-0fcd-4f54-afc4-adca05e5e4a5","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"6ed9ad58-c9de-4a8b-9512-8fe5421ac8a7","baselineName":"Ensure - ''Network security: Minimum session security for NTLM SSP based (including - secure RPC) servers'' is set to ''Require NTLMv2 session security, Require - 128-bit encryption''","baselineCceId":"CCE-37835-6","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_6ed9ad58-c9de-4a8b-9512-8fe5421ac8a7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/169ac315-a1e7-7168-fbe3-649585436cfc","name":"169ac315-a1e7-7168-fbe3-649585436cfc","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"d0f025af-b24b-49ab-9b75-60f485ed5407","baselineName":"Ensure - ''Turn off Autoplay'' is set to ''Enabled: All drives''","baselineCceId":"CCE-36875-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_d0f025af-b24b-49ab-9b75-60f485ed5407","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/1b2830ce-af40-7034-3077-5606feb66657","name":"1b2830ce-af40-7034-3077-5606feb66657","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"ef0eefbb-e845-47f3-af9a-3409296d3264","baselineName":"Ensure - ''Shut down the system'' is set to ''Administrators''","baselineCceId":"CCE-38328-1","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_ef0eefbb-e845-47f3-af9a-3409296d3264","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/1c53feb0-a989-c5cc-521a-593f2d8a905a","name":"1c53feb0-a989-c5cc-521a-593f2d8a905a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"315cc7e3-7252-47ce-af2f-9abf243fac16","baselineName":"Ensure - ''Network security: LAN Manager authentication level'' is set to ''Send NTLMv2 - response only. Refuse LM & NTLM''","baselineCceId":"CCE-36173-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_315cc7e3-7252-47ce-af2f-9abf243fac16","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/25af609a-d2a1-ef19-c017-7ef94e84c099","name":"25af609a-d2a1-ef19-c017-7ef94e84c099","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"14afe28a-6199-49ff-9789-dabb89ed714e","baselineName":"Ensure - ''Allow Telemetry'' is set to ''Enabled: 0 - Security [Enterprise Only]''","baselineCceId":"AZ-WIN-00169","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_14afe28a-6199-49ff-9789-dabb89ed714e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/2ed9282b-0765-7b7f-ce0f-5a3ac72cf4d2","name":"2ed9282b-0765-7b7f-ce0f-5a3ac72cf4d2","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"1ce9d867-2a1f-4e0d-8ee9-bc3606f9302c","baselineName":"Ensure - ''Do not display network selection UI'' is set to ''Enabled''","baselineCceId":"CCE-38353-9","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_1ce9d867-2a1f-4e0d-8ee9-bc3606f9302c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/2f6b8933-ebbc-1d32-4ae3-dfbbcb1f744f","name":"2f6b8933-ebbc-1d32-4ae3-dfbbcb1f744f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"9d979afa-a676-4077-9c6a-a84d87aba850","baselineName":"Ensure - ''Allow Cortana above lock screen'' is set to ''Disabled''","baselineCceId":"AZ-WIN-00130","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_9d979afa-a676-4077-9c6a-a84d87aba850","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/2f993d08-ca16-2317-1d3d-399233feb952","name":"2f993d08-ca16-2317-1d3d-399233feb952","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"5046d960-670d-4fef-973a-cf242a97147e","baselineName":"Ensure - ''Audit PNP Activity'' is set to ''Success''","baselineCceId":"AZ-WIN-00182","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_5046d960-670d-4fef-973a-cf242a97147e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/327fb2cc-83b9-af24-81a2-fcc7002bda7a","name":"327fb2cc-83b9-af24-81a2-fcc7002bda7a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"753e721c-be46-47f4-9571-8509ca5c1e61","baselineName":"Ensure - ''Windows Firewall: Public: Outbound connections'' is set to ''Allow (default)''","baselineCceId":"CCE-37434-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_753e721c-be46-47f4-9571-8509ca5c1e61","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/32dcd0a9-7dfe-fad6-00b4-0fb54adeab96","name":"32dcd0a9-7dfe-fad6-00b4-0fb54adeab96","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"051545a4-179e-4c04-9e9b-8f33821ef36f","baselineName":"Configure - ''Allow log on locally''","baselineCceId":"CCE-37659-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_051545a4-179e-4c04-9e9b-8f33821ef36f","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/375e3469-3503-b96d-becf-5ba341f3fb75","name":"375e3469-3503-b96d-becf-5ba341f3fb75","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"45bdfbf8-155f-41f8-b9cf-72f1ba26c5be","baselineName":"Ensure - ''Minimum password age'' is set to ''1 or more day(s)''","baselineCceId":"CCE-37073-4","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_45bdfbf8-155f-41f8-b9cf-72f1ba26c5be","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/38a1c205-5ca2-92c7-de4c-90a46ef37899","name":"38a1c205-5ca2-92c7-de4c-90a46ef37899","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b88b1d85-5f3c-4235-91ab-6d8b5e767311","baselineName":"Ensure - ''Audit Removable Storage'' is set to ''Success and Failure''","baselineCceId":"CCE-37617-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b88b1d85-5f3c-4235-91ab-6d8b5e767311","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/3a129462-b4a2-fe0f-1d91-7d3646dc0cf9","name":"3a129462-b4a2-fe0f-1d91-7d3646dc0cf9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"e82b54b4-ef4d-474c-b06e-036dd076cbec","baselineName":"Ensure - ''Windows Firewall: Public: Settings: Apply local firewall rules'' is set - to ''No''","baselineCceId":"CCE-37861-2","osName":"Windows Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_e82b54b4-ef4d-474c-b06e-036dd076cbec","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/3a30d20f-ac74-faea-99d4-d6c7fa808c5d","name":"3a30d20f-ac74-faea-99d4-d6c7fa808c5d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"acd96120-83a4-44a9-9e62-127012287e49","baselineName":"Audit - Other Object Access Events","baselineCceId":"AZ-WIN-00113","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_acd96120-83a4-44a9-9e62-127012287e49","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/4004414f-09d7-28fe-4c09-ab2a4146382c","name":"4004414f-09d7-28fe-4c09-ab2a4146382c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"2b36f636-e882-4b90-92c1-1f55f325053b","baselineName":"System - settings: Use Certificate Rules on Windows Executables for Software Restriction - Policies","baselineCceId":"AZ-WIN-00155","osName":"Windows Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_2b36f636-e882-4b90-92c1-1f55f325053b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/41d11801-1c73-a57e-53c3-c3fb28664216","name":"41d11801-1c73-a57e-53c3-c3fb28664216","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"420cf8af-038e-4d06-89a4-aa8bfaec0191","baselineName":"Ensure - ''Disallow Autoplay for non-volume devices'' is set to ''Enabled''","baselineCceId":"CCE-37636-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_420cf8af-038e-4d06-89a4-aa8bfaec0191","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/470bb3f3-f701-7042-18ac-2b1767e4c47d","name":"470bb3f3-f701-7042-18ac-2b1767e4c47d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"5bfb71c2-897f-4ccb-b7d5-7181b1f2527a","baselineName":"Ensure - ''Setup: Specify the maximum log file size (KB)'' is set to ''Enabled: 32,768 - or greater''","baselineCceId":"CCE-37526-1","osName":"Windows Server 2016 - Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_5bfb71c2-897f-4ccb-b7d5-7181b1f2527a","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/485ae04b-8419-34b9-0f8f-33a93c0d7033","name":"485ae04b-8419-34b9-0f8f-33a93c0d7033","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"28b5cfb6-7548-44f9-9f43-a542644fa1fd","baselineName":"Ensure - ''Windows Firewall: Private: Settings: Apply local connection security rules'' - is set to ''Yes (default)''","baselineCceId":"CCE-36063-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_28b5cfb6-7548-44f9-9f43-a542644fa1fd","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/4a30c880-3a07-65ad-e822-5c91cb467f21","name":"4a30c880-3a07-65ad-e822-5c91cb467f21","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"01d9a108-3379-4c5a-8236-1a724bcccff1","baselineName":"Ensure - ''Require secure RPC communication'' is set to ''Enabled''","baselineCceId":"CCE-37567-5","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_01d9a108-3379-4c5a-8236-1a724bcccff1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/4c7dcaa2-a0ec-c272-8502-91413024fbc5","name":"4c7dcaa2-a0ec-c272-8502-91413024fbc5","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T20:38:37.8557035Z","lastStateChangeTimeUtc":"2018-07-10T20:38:37.8557035Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"627b7494-0e62-4093-9f77-db8d526d036b","baselineName":"Remove - unnecesary accounts","baselineCceId":"CCE-XXXXX-7","osName":"Linux","severity":"Informational","ruleType":"Command","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.operationalinsights/workspaces/testservicews","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_627b7494-0e62-4093-9f77-db8d526d036b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/4d6d7006-0fe8-8720-9e01-6463006134d9","name":"4d6d7006-0fe8-8720-9e01-6463006134d9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"de7af76f-e469-4a4e-94fd-99f0cccd54b6","baselineName":"Ensure - ''Allow Microsoft accounts to be optional'' is set to ''Enabled''","baselineCceId":"CCE-38354-7","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_de7af76f-e469-4a4e-94fd-99f0cccd54b6","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/521d8189-8f14-54f0-9449-ae905f101340","name":"521d8189-8f14-54f0-9449-ae905f101340","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"d9794f70-e03c-40e5-a812-d2878c0eb6d5","baselineName":"Ensure - ''Always prompt for password upon connection'' is set to ''Enabled''","baselineCceId":"CCE-37929-7","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_d9794f70-e03c-40e5-a812-d2878c0eb6d5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/528702df-9557-5e07-4791-024c63270ae4","name":"528702df-9557-5e07-4791-024c63270ae4","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"10a43735-527c-46f0-a95c-954a8f9594dc","baselineName":"Ensure - ''Windows Firewall: Public: Settings: Apply local connection security rules'' - is set to ''No''","baselineCceId":"CCE-36268-1","osName":"Windows Server 2016 - Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_10a43735-527c-46f0-a95c-954a8f9594dc","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/53793947-8835-ac9c-e657-7e76fd3a4949","name":"53793947-8835-ac9c-e657-7e76fd3a4949","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"0571e435-5c84-48bb-b1c9-6e7eae13715a","baselineName":"Ensure - ''Turn off Internet Connection Wizard if URL connection is referring to Microsoft.com'' - is set to ''Enabled''","baselineCceId":"CCE-37163-3","osName":"Windows Server - 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_0571e435-5c84-48bb-b1c9-6e7eae13715a","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/5542d6c4-833c-5f11-4508-1bf22e345b5b","name":"5542d6c4-833c-5f11-4508-1bf22e345b5b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b625a003-d015-436e-89fb-fb2dfe71ae0f","baselineName":"Ensure - ''Microsoft network server: Digitally sign communications (if client agrees)'' - is set to ''Enabled''","baselineCceId":"CCE-35988-5","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b625a003-d015-436e-89fb-fb2dfe71ae0f","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/590548c6-afba-302b-a8de-46947eee7172","name":"590548c6-afba-302b-a8de-46947eee7172","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"967531f7-69cd-4a38-a517-3ebf4e5284cd","baselineName":"Ensure - ''User Account Control: Admin Approval Mode for the Built-in Administrator - account'' is set to ''Enabled''","baselineCceId":"CCE-36494-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_967531f7-69cd-4a38-a517-3ebf4e5284cd","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/5af997eb-0cd5-3ebb-26d0-03f9181b7e96","name":"5af997eb-0cd5-3ebb-26d0-03f9181b7e96","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2018-12-25T20:23:56.3591536Z","lastStateChangeTimeUtc":"2018-12-26T22:27:37.5400647Z","securityTaskParameters":{"name":"Enable - Security Contact Configuration in Policy","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/5d54eff5-62f5-303c-025d-de9de8b1bd64","name":"5d54eff5-62f5-303c-025d-de9de8b1bd64","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"11ca2201-2673-4f04-bad3-3265e1a53a5b","baselineName":"Ensure - ''Allow Input Personalization'' is set to ''Disabled''","baselineCceId":"AZ-WIN-00168","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_11ca2201-2673-4f04-bad3-3265e1a53a5b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/6073bd13-8a48-adcc-3cd5-58762309094c","name":"6073bd13-8a48-adcc-3cd5-58762309094c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"49258884-b2f0-4a4e-b66a-6954bb8473bf","baselineName":"Ensure - ''Deny log on as a batch job'' is configured","baselineCceId":"CCE-36923-1","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_49258884-b2f0-4a4e-b66a-6954bb8473bf","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/61f4876d-b35a-1563-c4e2-2580fcab03d0","name":"61f4876d-b35a-1563-c4e2-2580fcab03d0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"596d3922-71a7-49ce-b34b-1f5e63ff03da","baselineName":"Ensure - ''Do not show feedback notifications'' is set to ''Enabled''","baselineCceId":"AZ-WIN-00140","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_596d3922-71a7-49ce-b34b-1f5e63ff03da","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/6a73f12c-3d57-232f-3904-163805ec57fa","name":"6a73f12c-3d57-232f-3904-163805ec57fa","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"f9c16b7a-4f7c-4947-a2be-f47483dd2ac7","baselineName":"Devices: - Allow undock without having to log on","baselineCceId":"AZ-WIN-00120","osName":"Windows - Server 2016 Datacenter","severity":"Informational","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_f9c16b7a-4f7c-4947-a2be-f47483dd2ac7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/703511e5-7456-74ea-3b77-128cd71e39e3","name":"703511e5-7456-74ea-3b77-128cd71e39e3","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"be3a95af-edc4-4252-a1c0-6c74f3b5b8a7","baselineName":"Ensure - ''Do not display the password reveal button'' is set to ''Enabled''","baselineCceId":"CCE-37534-5","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_be3a95af-edc4-4252-a1c0-6c74f3b5b8a7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/713bf418-92b3-4f07-b795-54e152f3fbd6","name":"713bf418-92b3-4f07-b795-54e152f3fbd6","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"c139db2e-8dea-418e-bf7c-372ec0278e31","baselineName":"Ensure - ''Security: Specify the maximum log file size (KB)'' is set to ''Enabled: - 196,608 or greater''","baselineCceId":"CCE-37695-4","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_c139db2e-8dea-418e-bf7c-372ec0278e31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/73794fb5-fe2b-249f-0fec-20660183e852","name":"73794fb5-fe2b-249f-0fec-20660183e852","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"f34e3441-5977-432b-899b-119fc66e1b08","baselineName":"Ensure - ''Windows Firewall: Public: Settings: Display a notification'' is set to ''Yes''","baselineCceId":"CCE-38043-6","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_f34e3441-5977-432b-899b-119fc66e1b08","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/73c6161a-f009-b061-e8c5-e58dbce5aec3","name":"73c6161a-f009-b061-e8c5-e58dbce5aec3","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"4f8fd732-facf-4184-a29c-61fdd40db89d","baselineName":"Ensure - ''Audit Credential Validation'' is set to ''Success and Failure''","baselineCceId":"CCE-37741-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_4f8fd732-facf-4184-a29c-61fdd40db89d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/799cd2f6-71c2-c7b0-eb9e-8e106b04217a","name":"799cd2f6-71c2-c7b0-eb9e-8e106b04217a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3dcf28a5-e199-4b78-8933-7828dfde4b9d","baselineName":"Windows - Firewall: Private: Allow unicast response","baselineCceId":"AZ-WIN-00089","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3dcf28a5-e199-4b78-8933-7828dfde4b9d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/7b5e6fa5-c253-802c-dd73-7b90d3f47254","name":"7b5e6fa5-c253-802c-dd73-7b90d3f47254","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"23d0f843-e7bf-40e9-82cb-6299b35e52ab","baselineName":"Increase - a process working set","baselineCceId":"AZ-WIN-00185","osName":"Windows Server - 2016 Datacenter","severity":"Warning","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_23d0f843-e7bf-40e9-82cb-6299b35e52ab","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/7cd16ae7-3949-39f8-10a8-33e5c1a637ea","name":"7cd16ae7-3949-39f8-10a8-33e5c1a637ea","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"7ac80d3d-b488-4191-9bdc-6709b072cbe6","baselineName":"Ensure - ''Prevent enabling lock screen slide show'' is set to ''Enabled''","baselineCceId":"CCE-38348-9","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_7ac80d3d-b488-4191-9bdc-6709b072cbe6","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/7e59f136-1ffb-2c7f-964d-2712195e1095","name":"7e59f136-1ffb-2c7f-964d-2712195e1095","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b72cc850-f180-4479-abce-2b72815afead","baselineName":"Windows - Firewall: Public: Allow unicast response","baselineCceId":"AZ-WIN-00090","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b72cc850-f180-4479-abce-2b72815afead","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/81b07a44-d33f-06c8-0f6e-e4c821a5b869","name":"81b07a44-d33f-06c8-0f6e-e4c821a5b869","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"d4cb5e92-f237-4f83-95fb-1dde6be6db1b","baselineName":"Ensure - ''Windows Firewall: Domain: Settings: Display a notification'' is set to ''No''","baselineCceId":"CCE-38041-0","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_d4cb5e92-f237-4f83-95fb-1dde6be6db1b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/81c5c12b-29a4-6255-dc3d-4ddb7258f0c1","name":"81c5c12b-29a4-6255-dc3d-4ddb7258f0c1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"babda20b-1bc0-4204-9745-0cd584dcbb2b","baselineName":"Ensure - ''Audit Group Membership'' is set to ''Success''","baselineCceId":"AZ-WIN-00026","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_babda20b-1bc0-4204-9745-0cd584dcbb2b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/82a272c3-ceb6-99bc-3158-fe20c2692b46","name":"82a272c3-ceb6-99bc-3158-fe20c2692b46","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"081da702-ce92-480f-aa68-af49bf5b94db","baselineName":"Enable - ''Scan removable drives'' by setting DisableRemovableDriveScanning (REG_DWORD) - to 0","baselineCceId":"AZ-WIN-00177","osName":"Windows Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_081da702-ce92-480f-aa68-af49bf5b94db","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/83d2ce7d-ee9c-b3b0-273b-844746757ca2","name":"83d2ce7d-ee9c-b3b0-273b-844746757ca2","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"88338d83-a4e2-421b-b3f3-db6bd2c694a0","baselineName":"Ensure - ''Windows Firewall: Domain: Settings: Apply local connection security rules'' - is set to ''Yes (default)''","baselineCceId":"CCE-38040-2","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_88338d83-a4e2-421b-b3f3-db6bd2c694a0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/843889b8-2c6c-50a4-d31d-3baf0217ffae","name":"843889b8-2c6c-50a4-d31d-3baf0217ffae","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"e7d5034f-5652-4180-90c8-c49130acb3c6","baselineName":"Ensure - ''Network security: Allow Local System to use computer identity for NTLM'' - is set to ''Enabled''","baselineCceId":"CCE-38341-4","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_e7d5034f-5652-4180-90c8-c49130acb3c6","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/8597653f-2795-dc9e-2b34-345591babfd6","name":"8597653f-2795-dc9e-2b34-345591babfd6","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"cac31d47-c8ea-440f-af85-7697f483b21e","baselineName":"Ensure - ''Block user from showing account details on sign-in'' is set to ''Enabled''","baselineCceId":"AZ-WIN-00138","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_cac31d47-c8ea-440f-af85-7697f483b21e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/8a06b49d-7f85-d6ae-80b4-b3b23e62ffc5","name":"8a06b49d-7f85-d6ae-80b4-b3b23e62ffc5","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"87822480-3af9-4cf1-b0d2-93ceb957b129","baselineName":"Ensure - ''Network access: Do not allow anonymous enumeration of SAM accounts and shares'' - is set to ''Enabled'' (MS only)","baselineCceId":"CCE-36077-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_87822480-3af9-4cf1-b0d2-93ceb957b129","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/8a9f5439-66c2-a1f0-8df6-ba4e0e23281f","name":"8a9f5439-66c2-a1f0-8df6-ba4e0e23281f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b7432fc2-51ba-4ddf-83dd-ca7f92e670c1","baselineName":"Ensure - ''Deny log on locally'' is configured","baselineCceId":"CCE-37146-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b7432fc2-51ba-4ddf-83dd-ca7f92e670c1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/8ca17bc4-77f6-b806-8765-c14aa6e2a808","name":"8ca17bc4-77f6-b806-8765-c14aa6e2a808","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"fbe348fd-0402-4e31-8482-66ae9ae82ea2","baselineName":"Configure - ''Deny access to this computer from the network''","baselineCceId":"CCE-37954-5","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_fbe348fd-0402-4e31-8482-66ae9ae82ea2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/8f2e7a24-d676-21bb-5476-5c6fca47de2e","name":"8f2e7a24-d676-21bb-5476-5c6fca47de2e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"6b3dc518-61f4-4a47-920c-0411674596a0","baselineName":"Ensure - ''Audit Process Creation'' is set to ''Success and Failure''","baselineCceId":"CCE-36059-4","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_6b3dc518-61f4-4a47-920c-0411674596a0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/905ea131-b297-9811-5083-12994be327d9","name":"905ea131-b297-9811-5083-12994be327d9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"f6c7cdd1-b504-4e9e-a272-1aa2f441daa3","baselineName":"Audit - MPSSVC Rule-Level Policy Change","baselineCceId":"AZ-WIN-00111","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_f6c7cdd1-b504-4e9e-a272-1aa2f441daa3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/9083fecc-d4be-7f35-1311-8a6b33e7ba14","name":"9083fecc-d4be-7f35-1311-8a6b33e7ba14","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"68757cac-7589-4ed9-a162-27e5926f2deb","baselineName":"Ensure - ''Windows Firewall: Domain: Outbound connections'' is set to ''Allow (default)''","baselineCceId":"CCE-36146-9","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_68757cac-7589-4ed9-a162-27e5926f2deb","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/91d06b7f-5a94-0e28-3829-9b774a7af1a2","name":"91d06b7f-5a94-0e28-3829-9b774a7af1a2","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"5e33a15a-7db0-4a1d-b771-db3764f3a625","baselineName":"Ensure - ''Windows Firewall: Public: Firewall state'' is set to ''On (recommended)''","baselineCceId":"CCE-37862-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_5e33a15a-7db0-4a1d-b771-db3764f3a625","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/93650eb7-06f1-66a9-7fa2-5185b2c09201","name":"93650eb7-06f1-66a9-7fa2-5185b2c09201","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"103de8e8-643e-4b0e-b4a4-a85830239a53","baselineName":"Ensure - ''Audit Account Lockout'' is set to ''Success and Failure''","baselineCceId":"CCE-37133-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_103de8e8-643e-4b0e-b4a4-a85830239a53","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/94f344e4-3dae-2690-9b0e-ec7de7e36792","name":"94f344e4-3dae-2690-9b0e-ec7de7e36792","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"c98cfb4e-113f-4a25-a080-ab1f7d0f8f38","baselineName":"Ensure - ''Windows Firewall: Private: Outbound connections'' is set to ''Allow (default)''","baselineCceId":"CCE-38332-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_c98cfb4e-113f-4a25-a080-ab1f7d0f8f38","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/9c922ca2-0c95-d04b-ba66-e29da28e684a","name":"9c922ca2-0c95-d04b-ba66-e29da28e684a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"2a074d39-eee4-4bfe-b1e7-4132c033a762","baselineName":"Ensure - ''Network security: Minimum session security for NTLM SSP based (including - secure RPC) clients'' is set to ''Require NTLMv2 session security, Require - 128-bit encryption''","baselineCceId":"CCE-37553-5","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_2a074d39-eee4-4bfe-b1e7-4132c033a762","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/9fdcade9-a6c4-2eb7-57ef-aab9d8b67957","name":"9fdcade9-a6c4-2eb7-57ef-aab9d8b67957","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"4a459b04-79c8-4fb3-9ea0-cf4b77ee58d7","baselineName":"Ensure - ''Windows Firewall: Domain: Firewall state'' is set to ''On (recommended)''","baselineCceId":"CCE-36062-8","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_4a459b04-79c8-4fb3-9ea0-cf4b77ee58d7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a2e78cfe-f307-0a6e-8a4b-338eb5d15f43","name":"a2e78cfe-f307-0a6e-8a4b-338eb5d15f43","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"357272d2-2018-455e-935c-8777473661dd","baselineName":"Ensure - ''Prohibit installation and configuration of Network Bridge on your DNS domain - network'' is set to ''Enabled''","baselineCceId":"CCE-38002-2","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_357272d2-2018-455e-935c-8777473661dd","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a342a778-7e3f-5e7f-82c6-cc49fe85c2e1","name":"a342a778-7e3f-5e7f-82c6-cc49fe85c2e1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"5f2d95d3-8744-4029-85c9-0ba7ea191531","baselineName":"Ensure - ''Windows Firewall: Domain: Settings: Apply local firewall rules'' is set - to ''Yes (default)''","baselineCceId":"CCE-37860-4","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_5f2d95d3-8744-4029-85c9-0ba7ea191531","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a4016a8d-0f8f-eb1e-1482-56533f8b3513","name":"a4016a8d-0f8f-eb1e-1482-56533f8b3513","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3e20b64c-0356-4e95-ba4e-2ebd51e10bb9","baselineName":"Ensure - ''System: Specify the maximum log file size (KB)'' is set to ''Enabled: 32,768 - or greater''","baselineCceId":"CCE-36092-5","osName":"Windows Server 2016 - Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3e20b64c-0356-4e95-ba4e-2ebd51e10bb9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a4f14e2b-b447-6fca-e479-e1818d832c52","name":"a4f14e2b-b447-6fca-e479-e1818d832c52","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"94276972-d64d-43bc-ae92-8b609f2d114b","baselineName":"Ensure - ''Turn off multicast name resolution'' is set to ''Enabled'' (MS Only)","baselineCceId":"AZ-WIN-00145","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_94276972-d64d-43bc-ae92-8b609f2d114b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a8f6675f-087d-8cae-b554-6a28e56d966d","name":"a8f6675f-087d-8cae-b554-6a28e56d966d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"7983c8b6-ceca-4475-b58c-5b1d7745cde3","baselineName":"Ensure - ''Enable RPC Endpoint Mapper Client Authentication'' is set to ''Enabled'' - (MS only)","baselineCceId":"CCE-37346-4","osName":"Windows Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_7983c8b6-ceca-4475-b58c-5b1d7745cde3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/a971e3d6-7006-479e-d1a4-2f5cd733a83f","name":"a971e3d6-7006-479e-d1a4-2f5cd733a83f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3c336cee-a852-4673-82e9-c7e130af7bc7","baselineName":"Ensure - ''Boot-Start Driver Initialization Policy'' is set to ''Enabled: Good, unknown - and bad but critical''","baselineCceId":"CCE-37912-3","osName":"Windows Server - 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3c336cee-a852-4673-82e9-c7e130af7bc7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/b14a1ee2-4ba3-52b6-c5d6-f9f23108e022","name":"b14a1ee2-4ba3-52b6-c5d6-f9f23108e022","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"63f01650-f1cd-4996-a151-7a36bc2fedf8","baselineName":"Ensure - ''Prevent enabling lock screen camera'' is set to ''Enabled''","baselineCceId":"CCE-38347-1","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_63f01650-f1cd-4996-a151-7a36bc2fedf8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/b16ef9c4-ad51-5a6a-1fec-c1e495365634","name":"b16ef9c4-ad51-5a6a-1fec-c1e495365634","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"60e0c2c9-0b14-44fe-83d6-2b7095e06674","baselineName":"Ensure - ''Deny log on through Remote Desktop Services'' is configured","baselineCceId":"CCE-36867-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_60e0c2c9-0b14-44fe-83d6-2b7095e06674","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/b3e270ad-752e-d9ed-5afe-e79b2b36827a","name":"b3e270ad-752e-d9ed-5afe-e79b2b36827a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"747e5da4-09c3-4f52-a484-aaa9081a55f3","baselineName":"Ensure - ''Allow Cortana'' is set to ''Disabled''","baselineCceId":"AZ-WIN-00131","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_747e5da4-09c3-4f52-a484-aaa9081a55f3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/b9ed4a21-a68c-0a18-3525-583a04c46173","name":"b9ed4a21-a68c-0a18-3525-583a04c46173","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3b993f8f-245d-4f4e-9e8b-f94cbc71c3f6","baselineName":"Ensure - ''Deny log on as a service'' is configured","baselineCceId":"CCE-36877-9","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3b993f8f-245d-4f4e-9e8b-f94cbc71c3f6","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/bc7e048e-9555-9c59-46ac-1787160bcf51","name":"bc7e048e-9555-9c59-46ac-1787160bcf51","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"aa426f30-e6ff-4c6a-9d59-2ef82a504157","baselineName":"Ensure - ''Audit Sensitive Privilege Use'' is set to ''Success and Failure''","baselineCceId":"CCE-36267-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_aa426f30-e6ff-4c6a-9d59-2ef82a504157","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/bdb27d63-ed1b-8a7c-f4ec-c29d8874ec73","name":"bdb27d63-ed1b-8a7c-f4ec-c29d8874ec73","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"a636e099-8e2b-4653-a2bb-3689c151f9cc","baselineName":"Ensure - ''Windows Firewall: Private: Settings: Apply local firewall rules'' is set - to ''Yes (default)''","baselineCceId":"CCE-37438-9","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_a636e099-8e2b-4653-a2bb-3689c151f9cc","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/bfd8ce56-ff49-b6c9-feea-3c947a74c4cf","name":"bfd8ce56-ff49-b6c9-feea-3c947a74c4cf","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"d177f27b-8d9b-4bb1-a45c-5f3a11384d1f","baselineName":"Ensure - ''Windows Firewall: Private: Settings: Display a notification'' is set to - ''No''","baselineCceId":"CCE-37621-0","osName":"Windows Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_d177f27b-8d9b-4bb1-a45c-5f3a11384d1f","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c0649338-86e9-d87a-5a8a-5465430ede05","name":"c0649338-86e9-d87a-5a8a-5465430ede05","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"7869ddef-04ab-4cc5-90f2-5e6fd1540cba","baselineName":"Ensure - ''Set the default behavior for AutoRun'' is set to ''Enabled: Do not execute - any autorun commands''","baselineCceId":"CCE-38217-6","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_7869ddef-04ab-4cc5-90f2-5e6fd1540cba","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c0f3370f-5a67-9ec3-c176-c0db929730cd","name":"c0f3370f-5a67-9ec3-c176-c0db929730cd","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"c8e1851a-fb32-4197-a1c0-d9da262d37f1","baselineName":"Ensure - ''Windows Firewall: Private: Firewall state'' is set to ''On (recommended)''","baselineCceId":"CCE-38239-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_c8e1851a-fb32-4197-a1c0-d9da262d37f1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c16943c5-eaac-8fff-5ae5-7fd318b8ea1e","name":"c16943c5-eaac-8fff-5ae5-7fd318b8ea1e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"34edb7eb-697c-4be9-8830-5aa5b031372e","baselineName":"Ensure - ''Disallow Digest authentication'' is set to ''Enabled''","baselineCceId":"CCE-38318-2","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_34edb7eb-697c-4be9-8830-5aa5b031372e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c35673bc-9520-9adf-910e-49036a2d23a1","name":"c35673bc-9520-9adf-910e-49036a2d23a1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"0979b47f-fbbf-46ad-8def-768256fa012a","baselineName":"Ensure - ''Do not allow passwords to be saved'' is set to ''Enabled''","baselineCceId":"CCE-36223-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_0979b47f-fbbf-46ad-8def-768256fa012a","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c92fd415-7df4-6ee9-2223-a40396ff00dc","name":"c92fd415-7df4-6ee9-2223-a40396ff00dc","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"fa518c7b-96bc-45e6-8fee-2c99186a010d","baselineName":"Ensure - ''Audit Other Logon/Logoff Events'' is set to ''Success and Failure''","baselineCceId":"CCE-36322-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_fa518c7b-96bc-45e6-8fee-2c99186a010d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/c99c5ae8-0ea6-b7d5-2f5a-81f31d4e28c9","name":"c99c5ae8-0ea6-b7d5-2f5a-81f31d4e28c9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"dad8097d-db46-4df3-9839-a8504e60c878","baselineName":"Ensure - ''Enforce password history'' is set to ''24 or more password(s)''","baselineCceId":"CCE-37166-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_dad8097d-db46-4df3-9839-a8504e60c878","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/cad76198-82ca-cc2d-4abc-29d8888968c7","name":"cad76198-82ca-cc2d-4abc-29d8888968c7","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"e7e377d1-d6e0-4acc-a073-75b3243a646e","baselineName":"Ensure - ''Application: Specify the maximum log file size (KB)'' is set to ''Enabled: - 32,768 or greater''","baselineCceId":"CCE-37948-7","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_e7e377d1-d6e0-4acc-a073-75b3243a646e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/cde236b5-705a-bf27-3aa7-78053bafce9c","name":"cde236b5-705a-bf27-3aa7-78053bafce9c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3007d6c4-a091-4449-9d05-409319e65883","baselineName":"Specify - the interval to check for definition updates","baselineCceId":"AZ-WIN-00152","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3007d6c4-a091-4449-9d05-409319e65883","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/cf97a94c-92a8-ce95-36f6-9ceda24f1954","name":"cf97a94c-92a8-ce95-36f6-9ceda24f1954","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2018-11-26T17:52:15.1849842Z","lastStateChangeTimeUtc":"2018-12-26T20:11:51.8007306Z","securityTaskParameters":{"name":"UpgradePricingTierTaskParameters","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/d27978e1-1198-0dbc-a0b4-215aa96491a1","name":"d27978e1-1198-0dbc-a0b4-215aa96491a1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b17eabc0-5d73-4861-acc8-d5b97bc53f12","baselineName":"Ensure - ''Configure Solicited Remote Assistance'' is set to ''Disabled''","baselineCceId":"CCE-37281-3","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b17eabc0-5d73-4861-acc8-d5b97bc53f12","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/d65b4d2f-00ad-2a6c-9c0a-362814d7881c","name":"d65b4d2f-00ad-2a6c-9c0a-362814d7881c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"9e11215f-9b0b-4ca6-ad5b-d1a0c989af36","baselineName":"Ensure - ''Interactive logon: Do not display last user name'' is set to ''Enabled''","baselineCceId":"CCE-36056-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_9e11215f-9b0b-4ca6-ad5b-d1a0c989af36","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/d6af190a-5c1d-5b7a-f9e2-cea48eda0b8b","name":"d6af190a-5c1d-5b7a-f9e2-cea48eda0b8b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3270e2d2-c01d-49fe-baf7-950fb5bbe642","baselineName":"Ensure - ''Enable Windows NTP Client'' is set to ''Enabled''","baselineCceId":"CCE-37843-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3270e2d2-c01d-49fe-baf7-950fb5bbe642","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/d78464f7-18da-6e1e-4dbd-0e589a301b67","name":"d78464f7-18da-6e1e-4dbd-0e589a301b67","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"21c5bcb7-432e-4eaa-a01a-0cda8db73e62","baselineName":"Ensure - ''Prevent downloading of enclosures'' is set to ''Enabled''","baselineCceId":"CCE-37126-0","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_21c5bcb7-432e-4eaa-a01a-0cda8db73e62","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/db52ddb2-4f02-9221-71bd-b01836a84208","name":"db52ddb2-4f02-9221-71bd-b01836a84208","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"ea132d56-9c29-4d2a-bc92-fc81f616e540","baselineName":"Ensure - ''User Account Control: Behavior of the elevation prompt for standard users'' - is set to ''Automatically deny elevation requests''","baselineCceId":"CCE-36864-7","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_ea132d56-9c29-4d2a-bc92-fc81f616e540","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/e0f41866-aa3a-5c3a-b55e-8c445e7aa696","name":"e0f41866-aa3a-5c3a-b55e-8c445e7aa696","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"032b5976-1c4b-4c68-bc5d-0c65e35306b2","baselineName":"Ensure - ''Microsoft network server: Digitally sign communications (always)'' is set - to ''Enabled''","baselineCceId":"CCE-37864-6","osName":"Windows Server 2016 - Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_032b5976-1c4b-4c68-bc5d-0c65e35306b2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/e59b5cf9-a6fd-34a8-8f7e-ba41d6e2b53e","name":"e59b5cf9-a6fd-34a8-8f7e-ba41d6e2b53e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"bea7aff2-db2d-4db7-bf47-0e475db398a3","baselineName":"Ensure - ''Turn off app notifications on the lock screen'' is set to ''Enabled''","baselineCceId":"CCE-35893-7","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_bea7aff2-db2d-4db7-bf47-0e475db398a3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/e660d733-2365-681b-2c04-6f7fe01d0045","name":"e660d733-2365-681b-2c04-6f7fe01d0045","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"8042f614-f21e-4dca-ba3f-c8b25523b6b2","baselineName":"Ensure - ''Audit Security System Extension'' is set to ''Success''","baselineCceId":"CCE-36144-4","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"AuditPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_8042f614-f21e-4dca-ba3f-c8b25523b6b2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/e9b3967d-5059-add3-47fa-17207d08c3b8","name":"e9b3967d-5059-add3-47fa-17207d08c3b8","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"a30f6d7d-f3dc-442c-8a1f-921123c6250c","baselineName":"Bypass - traverse checking","baselineCceId":"AZ-WIN-00184","osName":"Windows Server - 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_a30f6d7d-f3dc-442c-8a1f-921123c6250c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/ec21e8a2-a7fc-81df-b9fb-29585d329e4c","name":"ec21e8a2-a7fc-81df-b9fb-29585d329e4c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"31f2f70a-685f-4e0a-96ba-cb0c0e83768b","baselineName":"Enable - ''Send file samples when further analysis is required'' for ''Send Safe Samples''","baselineCceId":"AZ-WIN-00126","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_31f2f70a-685f-4e0a-96ba-cb0c0e83768b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/ec37e391-76bf-e074-f876-59cece66602d","name":"ec37e391-76bf-e074-f876-59cece66602d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"8656ed1c-72e2-4d49-811b-aaec42521ae0","baselineName":"Ensure - ''System: Control Event Log behavior when the log file reaches its maximum - size'' is set to ''Disabled''","baselineCceId":"CCE-36160-0","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_8656ed1c-72e2-4d49-811b-aaec42521ae0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/ee4d9eb9-b389-e4e2-f62b-6c75c981e1dc","name":"ee4d9eb9-b389-e4e2-f62b-6c75c981e1dc","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"1e3ae441-8bd6-4736-94aa-ac56a430131c","baselineName":"Ensure - ''Configure Windows SmartScreen'' is set to ''Enabled''","baselineCceId":"CCE-35859-8","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_1e3ae441-8bd6-4736-94aa-ac56a430131c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/f34c5e60-2c99-fab1-9fc7-c446cb8a01c3","name":"f34c5e60-2c99-fab1-9fc7-c446cb8a01c3","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"3f2d92c2-5850-4f2d-b245-f5089aa975dd","baselineName":"Configure - ''Access this computer from the network''","baselineCceId":"CCE-35818-4","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_3f2d92c2-5850-4f2d-b245-f5089aa975dd","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/f5b2824a-92c8-e744-c564-a97d4ffc965f","name":"f5b2824a-92c8-e744-c564-a97d4ffc965f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"09ed81b2-8dba-4009-84f9-dcfd6009ed0d","baselineName":"Ensure - ''Enable insecure guest logons'' is set to ''Disabled''","baselineCceId":"AZ-WIN-00171","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_09ed81b2-8dba-4009-84f9-dcfd6009ed0d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/fa32b534-37df-59f4-bca0-c178925f9aaf","name":"fa32b534-37df-59f4-bca0-c178925f9aaf","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"41a8be7d-69bd-48f4-ae77-9568cf7b15d1","baselineName":"Ensure - ''Microsoft network client: Digitally sign communications (always)'' is set - to ''Enabled''","baselineCceId":"CCE-36325-9","osName":"Windows Server 2016 - Datacenter","severity":"Critical","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_41a8be7d-69bd-48f4-ae77-9568cf7b15d1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/fa5edbdd-2301-ec4e-3936-55b691cddf9a","name":"fa5edbdd-2301-ec4e-3936-55b691cddf9a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-05T12:08:08.7774195Z","lastStateChangeTimeUtc":"2018-07-05T12:08:08.7774195Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"bc9d4fef-9e33-48fc-bcbd-b53e60caf4a2","baselineName":"Ensure - ''Minimum password length'' is set to ''14 or more character(s)''","baselineCceId":"CCE-36534-6","osName":"Windows - Server 2016 Datacenter","severity":"Critical","ruleType":"SecurityPolicy","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_bc9d4fef-9e33-48fc-bcbd-b53e60caf4a2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/fe0df355-3846-c831-032f-99048d3f03f8","name":"fe0df355-3846-c831-032f-99048d3f03f8","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"ca4b8071-ae1b-4620-b3b0-3130a00c515c","baselineName":"Ensure - ''Allow search and Cortana to use location'' is set to ''Disabled''","baselineCceId":"AZ-WIN-00133","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_ca4b8071-ae1b-4620-b3b0-3130a00c515c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-cus/providers/Microsoft.Security/locations/centralus/tasks/955341c6-0c5c-6965-6ac2-3b75b04b9eb3","name":"955341c6-0c5c-6965-6ac2-3b75b04b9eb3","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Disable - unrestricted network access to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-cus/providers/microsoft.storage/storageaccounts/samplestorageaccount2_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-cus/providers/microsoft.storage/storageaccounts/samplestorageaccount2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myservice1/providers/Microsoft.Security/locations/centralus/tasks/0d39c3b5-9bd3-399b-2e9d-a4a575f768d9","name":"0d39c3b5-9bd3-399b-2e9d-a4a575f768d9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Disable - unrestricted network access to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/myservice1diag229_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/myservice1diag229"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myservice1/providers/Microsoft.Security/locations/centralus/tasks/2fadbbb0-8b20-d39e-7eeb-e78473bb8afb","name":"2fadbbb0-8b20-d39e-7eeb-e78473bb8afb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require - secure transfer to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/404c3081-a854-4457-ae30-26a93ef643f9","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/myservice1diag229_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/myservice1diag229"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myservice1/providers/Microsoft.Security/locations/centralus/tasks/384ec03b-7d93-f0c0-42bf-927fa4a55553","name":"384ec03b-7d93-f0c0-42bf-927fa4a55553","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Disable - unrestricted network access to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/rc44m4u3jcfyesyslog_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/rc44m4u3jcfyesyslog"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/457d3f7e-33a1-5e5e-9a5e-57d259715fca","name":"457d3f7e-33a1-5e5e-9a5e-57d259715fca","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4042106Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4042106Z","securityTaskParameters":{"resourceType":"VirtualMachine","category":"Compute","assessmentKey":"8e2b96ff-3de2-289b-b5c1-3b9921a3441e","policyName":"Resolve + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/0d0ae48a-fd48-6ce4-2a81-64237c100bdb","name":"0d0ae48a-fd48-6ce4-2a81-64237c100bdb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2017-03-22T19:22:11.0945027Z","lastStateChangeTimeUtc":"2017-03-22T19:22:11.0945027Z","securityTaskParameters":{"name":"Enable + Security Contact Configuration in Policy","uniqueKey":"00977cdb-163f-435f-9c32-39ec8ae61f4d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups//providers/Microsoft.Security/locations/centralus/tasks/1a6a68f1-085b-2058-4af2-a25899ab693a","name":"1a6a68f1-085b-2058-4af2-a25899ab693a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:08.1777854Z","lastStateChangeTimeUtc":"2019-06-05T14:56:08.1777854Z","securityTaskParameters":{"resourceType":"Subscription","category":"IdentityAndAccess","assessmentKey":"6f90a6d6-d4d6-0794-0ec1-98fa77878c2e","policyName":"A + maximum of 3 owners should be designated for your subscription ","policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/4f11b553-d42e-4e3a-89be-32ca364cad4c","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000_6f90a6d6-d4d6-0794-0ec1-98fa77878c2e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups//providers/Microsoft.Security/locations/centralus/tasks/8aae6dda-b5fa-9cd1-8079-e70864631994","name":"8aae6dda-b5fa-9cd1-8079-e70864631994","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:08.1777854Z","lastStateChangeTimeUtc":"2019-06-05T14:56:08.1777854Z","securityTaskParameters":{"resourceType":"Subscription","category":"IdentityAndAccess","assessmentKey":"94290b00-4d0c-d7b4-7cea-064a9554e681","policyName":"Enable + MFA for Azure Management App accounts with owner permissions on your subscription","policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/aa633080-8b72-40c4-a2d7-d00c03e80bed","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000_94290b00-4d0c-d7b4-7cea-064a9554e681","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups//providers/Microsoft.Security/locations/centralus/tasks/9f940f7a-b078-33a1-b752-d5fa3243d71d","name":"9f940f7a-b078-33a1-b752-d5fa3243d71d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:08.1777854Z","lastStateChangeTimeUtc":"2019-06-05T14:56:08.1777854Z","securityTaskParameters":{"resourceType":"Subscription","category":"IdentityAndAccess","assessmentKey":"57e98606-6b1e-6193-0e3d-fe621387c16b","policyName":"Enable + MFA for Azure Management App accounts with write permissions on your subscription","policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/9297c21d-2ed6-4474-b48f-163f75654ce3","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000_57e98606-6b1e-6193-0e3d-fe621387c16b","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alexghi/providers/Microsoft.Security/locations/centralus/tasks/4ee22cce-2e54-e952-cb39-564e83c33980","name":"4ee22cce-2e54-e952-cb39-564e83c33980","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisb_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisb"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alexghi/providers/Microsoft.Security/locations/centralus/tasks/a7cfe069-6e8f-b0c8-ca78-5784b4dabf29","name":"a7cfe069-6e8f-b0c8-ca78-5784b4dabf29","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisbwithtopics_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisbwithtopics"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Security/locations/centralus/tasks/29a4ed76-6249-20b5-438c-02715ef606b9","name":"29a4ed76-6249-20b5-438c-02715ef606b9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:04.9266881Z","lastStateChangeTimeUtc":"2019-06-05T14:56:04.9266881Z","securityTaskParameters":{"resourceType":"WebApplication","category":"Networking","assessmentKey":"1b351b29-41ca-6df5-946c-c190a56be5fe","policyName":"Web + Application should only be accessible over HTTPS","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Web/sites/amarz_1b351b29-41ca-6df5-946c-c190a56be5fe","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Web/sites/amarz"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Security/locations/centralus/tasks/5db8333a-52e1-3be4-bd80-50c8828a5c7b","name":"5db8333a-52e1-3be4-bd80-50c8828a5c7b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-04T02:56:14.399658Z","lastStateChangeTimeUtc":"2019-06-04T02:56:14.399658Z","securityTaskParameters":{"resourceType":"WebApplicationIaas","category":"Networking","assessmentKey":"fa82d653-0979-4456-8aca-50f2d60831c9","policyName":"Restrict + access to App Services","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Web/sites/amarz_fa82d653-0979-4456-8aca-50f2d60831c9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Web/sites/amarz"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Security/locations/centralus/tasks/8b3d163f-8a12-e6a2-cb75-9f1e424d457e","name":"8b3d163f-8a12-e6a2-cb75-9f1e424d457e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_Batch_batchAccounts","category":"Compute","assessmentKey":"6202f48b-7d45-ba03-4cb5-20831a84980d","policyName":"Configure + metric alert rules on Batch account","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.batch/batchaccounts/testb_6202f48b-7d45-ba03-4cb5-20831a84980d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.batch/batchaccounts/testb"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Security/locations/centralus/tasks/a09d21c8-989f-fc55-3ecd-7a53ceff3a24","name":"a09d21c8-989f-fc55-3ecd-7a53ceff3a24","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_Batch_batchAccounts","category":"Compute","assessmentKey":"32771b45-220c-1a8b-584e-fdd5a2584a66","policyName":"Enable + diagnostic logs in Batch accounts","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.batch/batchaccounts/testb_32771b45-220c-1a8b-584e-fdd5a2584a66","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.batch/batchaccounts/testb"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amae/providers/Microsoft.Security/locations/centralus/tasks/f8c2002a-239f-7e7e-7d5a-60929ac0ed7a","name":"f8c2002a-239f-7e7e-7d5a-60929ac0ed7a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_KeyVault_vaults","category":"IdentityAndAccess","assessmentKey":"88bbc99c-e5af-ddd7-6105-6150b2bfa519","policyName":"Enable + diagnostics logs in Key Vault","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.keyvault/vaults/azkv1_88bbc99c-e5af-ddd7-6105-6150b2bfa519","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/amae/providers/microsoft.keyvault/vaults/azkv1"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Security/locations/centralus/tasks/40e5322b-d39e-8d2d-0805-45d353d9934e","name":"40e5322b-d39e-8d2d-0805-45d353d9934e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_Batch_batchAccounts","category":"Compute","assessmentKey":"6202f48b-7d45-ba03-4cb5-20831a84980d","policyName":"Configure + metric alert rules on Batch account","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.batch/batchaccounts/ehpythonlongrunningtests_6202f48b-7d45-ba03-4cb5-20831a84980d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.batch/batchaccounts/ehpythonlongrunningtests"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Security/locations/centralus/tasks/bac7bc0c-685b-ac12-4f8d-66c958c1de28","name":"bac7bc0c-685b-ac12-4f8d-66c958c1de28","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_Batch_batchAccounts","category":"Compute","assessmentKey":"32771b45-220c-1a8b-584e-fdd5a2584a66","policyName":"Enable + diagnostic logs in Batch accounts","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.batch/batchaccounts/ehpythonlongrunningtests_32771b45-220c-1a8b-584e-fdd5a2584a66","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.batch/batchaccounts/ehpythonlongrunningtests"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Security/locations/centralus/tasks/cb46d75f-e3b6-9941-9e0d-b1751301acd0","name":"cb46d75f-e3b6-9941-9e0d-b1751301acd0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.storage/storageaccounts/pythonpremtest_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.storage/storageaccounts/pythonpremtest"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Security/locations/centralus/tasks/fef5c018-1d1a-1878-d65a-f1affc28cf01","name":"fef5c018-1d1a-1878-d65a-f1affc28cf01","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_KeyVault_vaults","category":"IdentityAndAccess","assessmentKey":"88bbc99c-e5af-ddd7-6105-6150b2bfa519","policyName":"Enable + diagnostics logs in Key Vault","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.keyvault/vaults/antisch-amqp-tests_88bbc99c-e5af-ddd7-6105-6150b2bfa519","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/antisch-amqp-tests/providers/microsoft.keyvault/vaults/antisch-amqp-tests"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Security/locations/centralus/tasks/384d707e-3e30-9074-3931-bc28c1e22f20","name":"384d707e-3e30-9074-3931-bc28c1e22f20","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-04T02:56:14.399658Z","lastStateChangeTimeUtc":"2019-06-04T02:56:14.399658Z","securityTaskParameters":{"resourceType":"WebApplicationIaas","category":"Networking","assessmentKey":"fa82d653-0979-4456-8aca-50f2d60831c9","policyName":"Restrict + access to App Services","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/clne84a5344-ccb1-461c-8155-d2ebddc47340_fa82d653-0979-4456-8aca-50f2d60831c9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/clne84a5344-ccb1-461c-8155-d2ebddc47340"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Security/locations/centralus/tasks/7e627b83-c4e8-78b5-0f34-60dbd30e7249","name":"7e627b83-c4e8-78b5-0f34-60dbd30e7249","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:04.9266881Z","lastStateChangeTimeUtc":"2019-06-05T14:56:04.9266881Z","securityTaskParameters":{"resourceType":"WebApplication","category":"Networking","assessmentKey":"1b351b29-41ca-6df5-946c-c190a56be5fe","policyName":"Web + Application should only be accessible over HTTPS","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/clne84a5344-ccb1-461c-8155-d2ebddc47340_1b351b29-41ca-6df5-946c-c190a56be5fe","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/clne84a5344-ccb1-461c-8155-d2ebddc47340"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/Microsoft.Security/locations/centralus/tasks/7ccbb0b7-ea6c-4b2a-602f-f8e82f88d348","name":"7ccbb0b7-ea6c-4b2a-602f-f8e82f88d348","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/microsoft.servicebus/namespaces/sb-pre-nscli5qtd3ayq_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/microsoft.servicebus/namespaces/sb-pre-nscli5qtd3ayq"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/Microsoft.Security/locations/centralus/tasks/fc780e59-e1e6-bb38-a4ae-bfd1429f781b","name":"fc780e59-e1e6-bb38-a4ae-bfd1429f781b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/microsoft.servicebus/namespaces/sb-std-nscli4mj6lj6b_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationepijd2pzo2hps57yd4r6vmulpsjimep3c5pcvbex62eijsfudjz246/providers/microsoft.servicebus/namespaces/sb-std-nscli4mj6lj6b"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/Microsoft.Security/locations/centralus/tasks/771608b7-1f6d-ce24-fba7-8ee601b027f0","name":"771608b7-1f6d-ce24-fba7-8ee601b027f0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/microsoft.servicebus/namespaces/sb-std-nscli4oeoxvd2_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/microsoft.servicebus/namespaces/sb-std-nscli4oeoxvd2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/Microsoft.Security/locations/centralus/tasks/a7739e05-29a2-2260-dff4-a3903ecbf139","name":"a7739e05-29a2-2260-dff4-a3903ecbf139","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/microsoft.servicebus/namespaces/sb-pre-nsclirpzpjcdu_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationezavmapri3syq6fmbjnot4nxuo6qv55ocgpwcv3bvp2d2xgspr5jmw/providers/microsoft.servicebus/namespaces/sb-pre-nsclirpzpjcdu"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/Microsoft.Security/locations/centralus/tasks/7e374280-55b5-be4e-d863-fd5b9ffc1922","name":"7e374280-55b5-be4e-d863-fd5b9ffc1922","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/microsoft.servicebus/namespaces/sb-pre-nscli3wjedi4n_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/microsoft.servicebus/namespaces/sb-pre-nscli3wjedi4n"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/Microsoft.Security/locations/centralus/tasks/ff5d4f31-c6f4-bb75-433e-a34f808253b4","name":"ff5d4f31-c6f4-bb75-433e-a34f808253b4","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/microsoft.servicebus/namespaces/sb-std-nscliu6ylbb7p_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migrationjxw52modxf32cnh3rhelmp3vm7kcsin55xi6mfr4akxksfhaxcl5iq/providers/microsoft.servicebus/namespaces/sb-std-nscliu6ylbb7p"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Security/locations/centralus/tasks/37ee74a5-1039-a72e-e5c2-d71294656394","name":"37ee74a5-1039-a72e-e5c2-d71294656394","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/microsoft.storage/storageaccounts/clitestjwzkdsfuou3niutbd_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/microsoft.storage/storageaccounts/clitestjwzkdsfuou3niutbd"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Security/locations/centralus/tasks/461a4a30-d7d8-e838-71c5-9d9bb6dccd01","name":"461a4a30-d7d8-e838-71c5-9d9bb6dccd01","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/microsoft.storage/storageaccounts/clitestjwzkdsfuou3niutbd_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/microsoft.storage/storageaccounts/clitestjwzkdsfuou3niutbd"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/Microsoft.Security/locations/centralus/tasks/1424ca74-4340-c22b-094c-e7a79ac0e4d0","name":"1424ca74-4340-c22b-094c-e7a79ac0e4d0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/microsoft.storage/storageaccounts/clistorageqjqpu42bh7_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/microsoft.storage/storageaccounts/clistorageqjqpu42bh7"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/Microsoft.Security/locations/centralus/tasks/2fcf7701-e6ad-9d17-3d68-5ca7054e41f0","name":"2fcf7701-e6ad-9d17-3d68-5ca7054e41f0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/microsoft.storage/storageaccounts/clistorageqjqpu42bh7_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/microsoft.storage/storageaccounts/clistorageqjqpu42bh7"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/Microsoft.Security/locations/centralus/tasks/1d13da2b-e1f6-cf4a-e4fa-62166dbf38c8","name":"1d13da2b-e1f6-cf4a-e4fa-62166dbf38c8","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/microsoft.storage/storageaccounts/clistoragevfnamwpyxm_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/microsoft.storage/storageaccounts/clistoragevfnamwpyxm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/Microsoft.Security/locations/centralus/tasks/988fabf9-10f9-e9ed-e481-b37053788362","name":"988fabf9-10f9-e9ed-e481-b37053788362","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/microsoft.storage/storageaccounts/clistoragevfnamwpyxm_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/microsoft.storage/storageaccounts/clistoragevfnamwpyxm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/Microsoft.Security/locations/centralus/tasks/7ab9b736-6e44-2e74-427f-30a0df69c067","name":"7ab9b736-6e44-2e74-427f-30a0df69c067","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/microsoft.storage/storageaccounts/clitest6dkcrwjg563o4lf6x_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/microsoft.storage/storageaccounts/clitest6dkcrwjg563o4lf6x"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/Microsoft.Security/locations/centralus/tasks/cb65d179-d5bd-e4cf-eef5-b08bf9ac070a","name":"cb65d179-d5bd-e4cf-eef5-b08bf9ac070a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/microsoft.storage/storageaccounts/clitest6dkcrwjg563o4lf6x_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/microsoft.storage/storageaccounts/clitest6dkcrwjg563o4lf6x"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/Microsoft.Security/locations/centralus/tasks/7675be8d-373e-7293-3ff3-aaf6ff177362","name":"7675be8d-373e-7293-3ff3-aaf6ff177362","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/microsoft.storage/storageaccounts/clistoragetif6h64z3n_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/microsoft.storage/storageaccounts/clistoragetif6h64z3n"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/Microsoft.Security/locations/centralus/tasks/d9ff22b4-374b-723b-d446-49683f1b58d1","name":"d9ff22b4-374b-723b-d446-49683f1b58d1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/microsoft.storage/storageaccounts/clistoragetif6h64z3n_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/microsoft.storage/storageaccounts/clistoragetif6h64z3n"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/Microsoft.Security/locations/centralus/tasks/009c4097-7584-e846-0afb-a01a4191e0ef","name":"009c4097-7584-e846-0afb-a01a4191e0ef","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/microsoft.storage/storageaccounts/clistorage2jbmemj6cj_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/microsoft.storage/storageaccounts/clistorage2jbmemj6cj"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/Microsoft.Security/locations/centralus/tasks/2eeb9967-ba0d-8486-9dcf-ae0949cdbcae","name":"2eeb9967-ba0d-8486-9dcf-ae0949cdbcae","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/microsoft.storage/storageaccounts/clistorage2jbmemj6cj_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/microsoft.storage/storageaccounts/clistorage2jbmemj6cj"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Security/locations/centralus/tasks/2b8f48fc-28e3-0c35-c48e-451f1ebf5cae","name":"2b8f48fc-28e3-0c35-c48e-451f1ebf5cae","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/microsoft.storage/storageaccounts/clitestnlmd52jlcmr4ce7b4_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/microsoft.storage/storageaccounts/clitestnlmd52jlcmr4ce7b4"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Security/locations/centralus/tasks/814d1b3e-9ac4-552f-b15d-7819aeb1f6e4","name":"814d1b3e-9ac4-552f-b15d-7819aeb1f6e4","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/microsoft.storage/storageaccounts/clitestnlmd52jlcmr4ce7b4_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/microsoft.storage/storageaccounts/clitestnlmd52jlcmr4ce7b4"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/Microsoft.Security/locations/centralus/tasks/4fa32036-af66-6f23-74ca-bb2ecc23e376","name":"4fa32036-af66-6f23-74ca-bb2ecc23e376","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/microsoft.storage/storageaccounts/clistorageuxtcmjfo3r_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/microsoft.storage/storageaccounts/clistorageuxtcmjfo3r"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/Microsoft.Security/locations/centralus/tasks/ab730ccd-d366-7f98-5017-3cdd286833a9","name":"ab730ccd-d366-7f98-5017-3cdd286833a9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/microsoft.storage/storageaccounts/clistorageuxtcmjfo3r_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/microsoft.storage/storageaccounts/clistorageuxtcmjfo3r"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/Microsoft.Security/locations/centralus/tasks/955e123f-d825-e0c3-8f9e-25ee062f031a","name":"955e123f-d825-e0c3-8f9e-25ee062f031a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/microsoft.storage/storageaccounts/clistorage66w3pc3dsj_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/microsoft.storage/storageaccounts/clistorage66w3pc3dsj"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/Microsoft.Security/locations/centralus/tasks/9f495a46-d007-e001-8633-9089273b1eeb","name":"9f495a46-d007-e001-8633-9089273b1eeb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/microsoft.storage/storageaccounts/clistorage66w3pc3dsj_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/microsoft.storage/storageaccounts/clistorage66w3pc3dsj"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/Microsoft.Security/locations/centralus/tasks/37791679-0d33-09d8-faaf-f8a0cbed1d22","name":"37791679-0d33-09d8-faaf-f8a0cbed1d22","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/microsoft.storage/storageaccounts/clistoragehhbuuxg3tu_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/microsoft.storage/storageaccounts/clistoragehhbuuxg3tu"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/Microsoft.Security/locations/centralus/tasks/ecd8e197-7f9f-9f4f-37b5-f9ce94057353","name":"ecd8e197-7f9f-9f4f-37b5-f9ce94057353","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/microsoft.storage/storageaccounts/clistoragehhbuuxg3tu_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/microsoft.storage/storageaccounts/clistoragehhbuuxg3tu"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Security/locations/centralus/tasks/39b8f3a7-c4fb-7c37-64a0-67212d7316e2","name":"39b8f3a7-c4fb-7c37-64a0-67212d7316e2","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_KeyVault_vaults","category":"IdentityAndAccess","assessmentKey":"88bbc99c-e5af-ddd7-6105-6150b2bfa519","policyName":"Enable + diagnostics logs in Key Vault","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.keyvault/vaults/cliautomationlab980_88bbc99c-e5af-ddd7-6105-6150b2bfa519","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.keyvault/vaults/cliautomationlab980"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Security/locations/centralus/tasks/50aabbf4-9dc5-9306-fbfd-669545247cbc","name":"50aabbf4-9dc5-9306-fbfd-669545247cbc","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.storage/storageaccounts/acliautomationlab8902_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.storage/storageaccounts/acliautomationlab8902"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Security/locations/centralus/tasks/b2398cb4-f77b-dd8b-1c9d-baf76cfe2280","name":"b2398cb4-f77b-dd8b-1c9d-baf76cfe2280","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.storage/storageaccounts/acliautomationlab8902_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitestlab1/providers/microsoft.storage/storageaccounts/acliautomationlab8902"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Security/locations/centralus/tasks/602eaff1-4ab8-86e2-d837-2c3e3f44e222","name":"602eaff1-4ab8-86e2-d837-2c3e3f44e222","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Access + to storage accounts with firewall and virtual network configurations should + be restricted","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cloud-shell-storage-westus/providers/microsoft.storage/storageaccounts/cs400977cdb163fx435fx9c3_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cloud-shell-storage-westus/providers/microsoft.storage/storageaccounts/cs400977cdb163fx435fx9c3"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-storage-southeastasia/providers/Microsoft.Security/locations/centralus/tasks/72572a58-58de-edcc-b857-9ba961fc10b0","name":"72572a58-58de-edcc-b857-9ba961fc10b0","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:55:29.742432Z","lastStateChangeTimeUtc":"2019-06-05T14:55:29.742432Z","securityTaskParameters":{"resourceType":"Microsoft_ClassicStorage_storageAccounts","category":"Data","assessmentKey":"47bb383c-8e25-95f0-c2aa-437add1d87d3","policyName":"Migrate + storage accounts to new AzureRM resources","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-southeastasia/providers/microsoft.classicstorage/storageaccounts/gb20121341401505173_47bb383c-8e25-95f0-c2aa-437add1d87d3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-southeastasia/providers/microsoft.classicstorage/storageaccounts/gb20121341401505173"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-storage-westus/providers/Microsoft.Security/locations/centralus/tasks/48af7de6-7f90-3751-ed11-9b948d8114de","name":"48af7de6-7f90-3751-ed11-9b948d8114de","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:55:29.742432Z","lastStateChangeTimeUtc":"2019-06-05T14:55:29.742432Z","securityTaskParameters":{"resourceType":"Microsoft_ClassicStorage_storageAccounts","category":"Data","assessmentKey":"47bb383c-8e25-95f0-c2aa-437add1d87d3","policyName":"Migrate + storage accounts to new AzureRM resources","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/nodesdkstorage_47bb383c-8e25-95f0-c2aa-437add1d87d3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/nodesdkstorage"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-storage-westus/providers/Microsoft.Security/locations/centralus/tasks/982b04d7-c385-b00f-0558-6777bec96bb9","name":"982b04d7-c385-b00f-0558-6777bec96bb9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:55:29.742432Z","lastStateChangeTimeUtc":"2019-06-05T14:55:29.742432Z","securityTaskParameters":{"resourceType":"Microsoft_ClassicStorage_storageAccounts","category":"Data","assessmentKey":"47bb383c-8e25-95f0-c2aa-437add1d87d3","policyName":"Migrate + storage accounts to new AzureRM resources","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/ubuntu1231339038580511_47bb383c-8e25-95f0-c2aa-437add1d87d3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/ubuntu1231339038580511"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-storage-westus/providers/Microsoft.Security/locations/centralus/tasks/d3972cd1-9f6c-2b8a-27f3-22c7b710316e","name":"d3972cd1-9f6c-2b8a-27f3-22c7b710316e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:55:29.742432Z","lastStateChangeTimeUtc":"2019-06-05T14:55:29.742432Z","securityTaskParameters":{"resourceType":"Microsoft_ClassicStorage_storageAccounts","category":"Data","assessmentKey":"47bb383c-8e25-95f0-c2aa-437add1d87d3","policyName":"Migrate + storage accounts to new AzureRM resources","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/portalvhdsdl1c4b300sn34_47bb383c-8e25-95f0-c2aa-437add1d87d3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/portalvhdsdl1c4b300sn34"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-storage-westus/providers/Microsoft.Security/locations/centralus/tasks/f858d3a9-b2ec-732c-ca0b-a7fa8bd9417d","name":"f858d3a9-b2ec-732c-ca0b-a7fa8bd9417d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:55:29.742432Z","lastStateChangeTimeUtc":"2019-06-05T14:55:29.742432Z","securityTaskParameters":{"resourceType":"Microsoft_ClassicStorage_storageAccounts","category":"Data","assessmentKey":"47bb383c-8e25-95f0-c2aa-437add1d87d3","policyName":"Migrate + storage accounts to new AzureRM resources","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/cchs001_47bb383c-8e25-95f0-c2aa-437add1d87d3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/default-storage-westus/providers/microsoft.classicstorage/storageaccounts/cchs001"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Security/locations/centralus/tasks/83f31bac-6e5f-83c2-b13c-ddb4afb9a51f","name":"83f31bac-6e5f-83c2-b13c-ddb4afb9a51f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-04T02:56:14.399658Z","lastStateChangeTimeUtc":"2019-06-04T02:56:14.399658Z","securityTaskParameters":{"resourceType":"WebApplicationIaas","category":"Networking","assessmentKey":"fa82d653-0979-4456-8aca-50f2d60831c9","policyName":"Restrict + access to App Services","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Web/sites/wilxpetclinicmysql_fa82d653-0979-4456-8aca-50f2d60831c9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Web/sites/wilxpetclinicmysql"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Security/locations/centralus/tasks/a581ec27-e22f-978e-229d-574d9a68ec7b","name":"a581ec27-e22f-978e-229d-574d9a68ec7b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:04.9266881Z","lastStateChangeTimeUtc":"2019-06-05T14:56:04.9266881Z","securityTaskParameters":{"resourceType":"WebApplication","category":"Networking","assessmentKey":"1b351b29-41ca-6df5-946c-c190a56be5fe","policyName":"Web + Application should only be accessible over HTTPS","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Web/sites/wilxpetclinicmysql_1b351b29-41ca-6df5-946c-c190a56be5fe","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group4591223413/providers/Microsoft.Web/sites/wilxpetclinicmysql"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/0a3e72af-c35e-2258-728e-b6d267218365","name":"0a3e72af-c35e-2258-728e-b6d267218365","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount222_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount222"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/10917b4e-ffe4-fbfb-3536-15cf1b66870d","name":"10917b4e-ffe4-fbfb-3536-15cf1b66870d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Access + to storage accounts with firewall and virtual network configurations should + be restricted","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountblock_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountblock"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/1571ca2a-3838-f048-6631-5d54742596c6","name":"1571ca2a-3838-f048-6631-5d54742596c6","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount2_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/1cb63b32-c54d-541e-882e-93a89e738e2b","name":"1cb63b32-c54d-541e-882e-93a89e738e2b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount2_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/248e8132-bf0d-9dcc-6d67-6362c6db0365","name":"248e8132-bf0d-9dcc-6d67-6362c6db0365","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Access + to storage accounts with firewall and virtual network configurations should + be restricted","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguacco3_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguacco3"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/26841732-fed6-4dfd-c3a9-41e103511467","name":"26841732-fed6-4dfd-c3a9-41e103511467","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limgutesttest_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limgutesttest"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/4609ebb2-7218-42a9-56bb-868e51c45d47","name":"4609ebb2-7218-42a9-56bb-868e51c45d47","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Access + to storage accounts with firewall and virtual network configurations should + be restricted","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limgutestpre_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limgutestpre"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/590566be-36fd-77b4-0816-ab44ad964e6e","name":"590566be-36fd-77b4-0816-ab44ad964e6e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Access + to storage accounts with firewall and virtual network configurations should + be restricted","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountttt_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountttt"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/a6172e99-e0f6-1e6c-bebc-11a7da7ebac7","name":"a6172e99-e0f6-1e6c-bebc-11a7da7ebac7","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount222_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount222"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/c7b05557-fc09-11d1-3609-b36bd6ae24c6","name":"c7b05557-fc09-11d1-3609-b36bd6ae24c6","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Secure + transfer to storage accounts should be enabled","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountttt_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountttt"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/d439735c-e47e-122a-d737-11bdaff09531","name":"d439735c-e47e-122a-d737-11bdaff09531","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount22_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount22"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/dd312c4b-bc52-c4bd-0508-91f34802a53a","name":"dd312c4b-bc52-c4bd-0508-91f34802a53a","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount22_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount22"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/ec8021d8-6095-df86-cd21-d68c0f463585","name":"ec8021d8-6095-df86-cd21-d68c0f463585","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/ee949818-2496-8e1e-937f-99096ad24e69","name":"ee949818-2496-8e1e-937f-99096ad24e69","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccount"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Security/locations/centralus/tasks/effb9a75-10ba-1d3a-e4df-57c7cee940cb","name":"effb9a75-10ba-1d3a-e4df-57c7cee940cb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Secure + transfer to storage accounts should be enabled","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountblock_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/limgurg/providers/microsoft.storage/storageaccounts/limguaccountblock"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Security/locations/centralus/tasks/0ac5baaa-18ba-2e62-11e9-d4ed92b169c9","name":"0ac5baaa-18ba-2e62-11e9-d4ed92b169c9","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:04.9266881Z","lastStateChangeTimeUtc":"2019-06-05T14:56:04.9266881Z","securityTaskParameters":{"resourceType":"WebApplication","category":"Networking","assessmentKey":"1b351b29-41ca-6df5-946c-c190a56be5fe","policyName":"Web + Application should only be accessible over HTTPS","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Web/sites/lmazuel-pycon_1b351b29-41ca-6df5-946c-c190a56be5fe","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Web/sites/lmazuel-pycon"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Security/locations/centralus/tasks/8ac5bd14-3900-71e9-1d9e-4f2d22f8215d","name":"8ac5bd14-3900-71e9-1d9e-4f2d22f8215d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-04T02:56:14.399658Z","lastStateChangeTimeUtc":"2019-06-04T02:56:14.399658Z","securityTaskParameters":{"resourceType":"WebApplicationIaas","category":"Networking","assessmentKey":"fa82d653-0979-4456-8aca-50f2d60831c9","policyName":"Restrict + access to App Services","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Web/sites/lmazuel-pycon_fa82d653-0979-4456-8aca-50f2d60831c9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel_rg_Linux_eastus/providers/Microsoft.Web/sites/lmazuel-pycon"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Security/locations/centralus/tasks/2aa126eb-7c68-75f3-38eb-fc07f202d105","name":"2aa126eb-7c68-75f3-38eb-fc07f202d105","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-eventgridtesting/providers/microsoft.storage/storageaccounts/eventgridtestin9c1e_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-eventgridtesting/providers/microsoft.storage/storageaccounts/eventgridtestin9c1e"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Security/locations/centralus/tasks/6d201a3b-4b8f-b984-146e-b1fe32ea660e","name":"6d201a3b-4b8f-b984-146e-b1fe32ea660e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-04T02:56:14.399658Z","lastStateChangeTimeUtc":"2019-06-04T02:56:14.399658Z","securityTaskParameters":{"resourceType":"WebApplicationIaas","category":"Networking","assessmentKey":"fa82d653-0979-4456-8aca-50f2d60831c9","policyName":"Restrict + access to App Services","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Web/sites/eventgridtesting_fa82d653-0979-4456-8aca-50f2d60831c9","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Web/sites/eventgridtesting"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Security/locations/centralus/tasks/af6c01d8-661b-8e4a-cbdf-1dc79bf71fac","name":"af6c01d8-661b-8e4a-cbdf-1dc79bf71fac","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:04.9423161Z","lastStateChangeTimeUtc":"2019-06-05T14:56:04.9423161Z","securityTaskParameters":{"resourceType":"FunctionApp","category":"Networking","assessmentKey":"cb0acdc6-0846-fd48-debe-9905af151b6d","policyName":"Function + App should only be accessible over HTTPS","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/5df82f4f-773a-4a2d-97a2-422a806f1a55","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Web/sites/eventgridtesting_cb0acdc6-0846-fd48-debe-9905af151b6d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Web/sites/eventgridtesting"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Security/locations/centralus/tasks/ecae20ca-cdec-b7ac-575a-ac2222df48b5","name":"ecae20ca-cdec-b7ac-575a-ac2222df48b5","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-eventgridtesting/providers/microsoft.storage/storageaccounts/eventgridtestin9c1e_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-eventgridtesting/providers/microsoft.storage/storageaccounts/eventgridtestin9c1e"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-logictest/providers/Microsoft.Security/locations/centralus/tasks/7d3d2ada-516d-dd51-0dc4-994a29de760f","name":"7d3d2ada-516d-dd51-0dc4-994a29de760f","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9889027Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9889027Z","securityTaskParameters":{"resourceType":"Microsoft_Logic_workflows","category":"Compute","assessmentKey":"91387f44-7e43-4ecc-55f0-46f5adee3dd5","policyName":"Enable + diagnostics logs in Logic Apps","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-logictest/providers/microsoft.logic/workflows/lmazuel-logictest2_91387f44-7e43-4ecc-55f0-46f5adee3dd5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-logictest/providers/microsoft.logic/workflows/lmazuel-logictest2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-logictest/providers/Microsoft.Security/locations/centralus/tasks/8617518f-a717-9909-107a-f8ab06486332","name":"8617518f-a717-9909-107a-f8ab06486332","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-logictest/providers/microsoft.servicebus/namespaces/lmsbtest_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-logictest/providers/microsoft.servicebus/namespaces/lmsbtest"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Security/locations/centralus/tasks/3d20defb-a678-9303-bf6e-7cb1625733cb","name":"3d20defb-a678-9303-bf6e-7cb1625733cb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-06-07T02:55:31.719784Z","lastStateChangeTimeUtc":"2018-06-07T02:55:31.719784Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture","vmName":"lmazuel-testcapture","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":true,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Security/locations/centralus/tasks/c8da4ce5-798e-66a9-5c4c-fb7f91a076f1","name":"c8da4ce5-798e-66a9-5c4c-fb7f91a076f1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:39.8217087Z","lastStateChangeTimeUtc":"2019-06-05T14:57:39.8217087Z","securityTaskParameters":{"resourceType":"VirtualMachine","category":"Networking","assessmentKey":"805651bc-6ecd-4c73-9b55-97a19d0582d0","policyName":"Apply + a Just-In-Time network access control","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture_805651bc-6ecd-4c73-9b55-97a19d0582d0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Security/locations/centralus/tasks/e58b0a1e-b788-3645-cc53-62f887db556b","name":"e58b0a1e-b788-3645-cc53-62f887db556b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:39.8217087Z","lastStateChangeTimeUtc":"2019-06-05T14:57:39.8217087Z","securityTaskParameters":{"resourceType":"VirtualMachine","category":"Compute","assessmentKey":"8e2b96ff-3de2-289b-b5c1-3b9921a3441e","policyName":"Resolve monitoring agent health issues on your machines","policyDefinitionId":"Resolve - monitoring agent health issues on your machines","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm_8e2b96ff-3de2-289b-b5c1-3b9921a3441e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Security/locations/centralus/tasks/47f736fa-0ec8-a372-de49-8cf18527930c","name":"47f736fa-0ec8-a372-de49-8cf18527930c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T12:43:51.3894814Z","lastStateChangeTimeUtc":"2018-07-10T12:43:51.3894814Z","securityTaskParameters":{"resourceGroup":"myService1","provisionTaskAzureResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.security/locations/centralus/tasks/bd238b0a-2936-e1a4-fe65-7a52ea8627ad","solutionName":"ContosoWAF","securityFamily":"SaasWaf","managementUrl":"","name":"ConfigureTier2Waf","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/publicIPAddresses/SyslogVMPublicIP","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/publicIPAddresses/SyslogVMPublicIP"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Security/locations/centralus/tasks/5696e90f-833d-494c-8833-f3be335fa9cb","name":"5696e90f-833d-494c-8833-f3be335fa9cb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T11:39:28.9783962Z","lastStateChangeTimeUtc":"2018-07-10T11:39:28.9783962Z","securityTaskParameters":{"resourceName":"syslogmyservice1vm","resourceType":"VirtualMachine","resourceParent":"","parentIpAddress":"","ipAddress":"65.52.66.31","location":"northeurope","resourceGroup":"MYSERVICE1","subnetIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/virtualNetworks/syslogmyservice1net/subnets/syslogmyservice1net"],"resourcesIdsToProtect":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/networkInterfaces/SyslogVMNic","/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/publicIPAddresses/SyslogVMPublicIP"],"concreteResourceType":"VirtualMachine","name":"NetworkSecurityGroupMissingOnVm","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/65193cce-25a1-b30f-f94e-69d52e22923c","name":"65193cce-25a1-b30f-f94e-69d52e22923c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-04T08:23:39.8258696Z","lastStateChangeTimeUtc":"2018-10-16T19:26:50.6150391Z","securityTaskParameters":{"supportedAgents":[],"name":"VulnerabilityAssessmentDeployment","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_MYSERVICE1_testService","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Security/locations/centralus/tasks/7e28a40d-e746-4751-8340-5126d6b77ae5","name":"7e28a40d-e746-4751-8340-5126d6b77ae5","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T11:39:28.9783962Z","lastStateChangeTimeUtc":"2018-07-10T11:39:28.9783962Z","securityTaskParameters":{"resourceName":"syslogmyservice1net","resourceType":"Subnet","resourceParent":"syslogmyservice1net","location":"northeurope","resourceGroup":"myService1","name":"NetworkSecurityGroupMissingOnSubnet","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/virtualNetworks/syslogmyservice1net/subnets/syslogmyservice1net","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/virtualNetworks/syslogmyservice1net/subnets/syslogmyservice1net"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/94867597-75e5-cfb6-8b71-e5e5253a24e1","name":"94867597-75e5-cfb6-8b71-e5e5253a24e1","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-04T08:23:39.8258696Z","lastStateChangeTimeUtc":"2018-07-04T08:23:39.8258696Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService","vmName":"testService","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":true,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/a02fffd5-1956-a6d7-73da-a87a65ae02f4","name":"a02fffd5-1956-a6d7-73da-a87a65ae02f4","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T11:39:28.9783962Z","lastStateChangeTimeUtc":"2018-07-10T15:03:11.4874871Z","securityTaskParameters":{"supportedAgents":[],"name":"VulnerabilityAssessmentDeployment","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_MYSERVICE1_syslogmyservice1vm","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myservice1/providers/Microsoft.Security/locations/centralus/tasks/a65af4c8-a7d9-30ff-5e40-db7581b8e33e","name":"a65af4c8-a7d9-30ff-5e40-db7581b8e33e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require - secure transfer to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/404c3081-a854-4457-ae30-26a93ef643f9","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/rc44m4u3jcfyesyslog_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.storage/storageaccounts/rc44m4u3jcfyesyslog"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myservice1/providers/Microsoft.Security/locations/centralus/tasks/b9ebf06e-9b36-85d6-4b60-b9a1979ffe27","name":"b9ebf06e-9b36-85d6-4b60-b9a1979ffe27","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4042106Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4042106Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"f0553104-cfdb-65e6-759c-002812e38500","policyName":"Provision - an Azure AD administrator for SQL server","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/1f314764-cb73-4fc9-b863-8eca98ac36e9","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.sql/servers/datastore_f0553104-cfdb-65e6-759c-002812e38500","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myservice1/providers/microsoft.sql/servers/datastore"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Security/locations/centralus/tasks/bd382d04-b478-ac77-e89f-300789032367","name":"bd382d04-b478-ac77-e89f-300789032367","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T11:39:28.9783962Z","lastStateChangeTimeUtc":"2018-07-10T11:39:28.9783962Z","securityTaskParameters":{"publicIpName":"65.52.66.31","fullyQualifiedDomainName":"SyslogVMPublicIP","portsToProtect":[0],"name":"ProvisionNgfw","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/publicIPAddresses/SyslogVMPublicIP","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Network/publicIPAddresses/SyslogVMPublicIP"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/ce43626a-d56b-6a38-49ef-3ad7a731666e","name":"ce43626a-d56b-6a38-49ef-3ad7a731666e","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-10T11:39:28.9627686Z","lastStateChangeTimeUtc":"2018-07-10T11:39:28.9627686Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm","vmName":"syslogmyservice1vm","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":false,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/syslogmyservice1vm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Security/locations/centralus/tasks/eb85bd4f-f7b3-1f78-aec4-907c769a74ff","name":"eb85bd4f-f7b3-1f78-aec4-907c769a74ff","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4042106Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4042106Z","securityTaskParameters":{"resourceType":"VirtualMachine","category":"Compute","assessmentKey":"968548cb-02b3-8cd2-11f8-0cf64ab1a347","policyName":"Troubleshoot - missing scan data on your machines","policyDefinitionId":"Troubleshoot missing - scan data on your machines","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService_968548cb-02b3-8cd2-11f8-0cf64ab1a347","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYSERVICE1/providers/Microsoft.Compute/virtualMachines/testService"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Security/locations/centralus/tasks/ed736ed1-3f42-a95a-0b9e-458c44233937","name":"ed736ed1-3f42-a95a-0b9e-458c44233937","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-07-04T08:23:39.8258696Z","lastStateChangeTimeUtc":"2018-07-04T08:23:39.8258696Z","securityTaskParameters":{"serverName":"datastore","serverId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Sql/servers/datastore","name":"Enable - auditing for the SQL server","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Sql/servers/datastore/auditingPolicies/Default","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myService1/providers/Microsoft.Sql/servers/datastore"}}}]}'} + monitoring agent health issues on your machines","severity":"Medium","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture_8e2b96ff-3de2-289b-b5c1-3b9921a3441e","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/LMAZUEL-TESTCAPTURE/providers/Microsoft.Compute/virtualMachines/lmazuel-testcapture"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-testcapture/providers/Microsoft.Security/locations/centralus/tasks/f1df0be9-eb20-ba20-d320-c2e92546a793","name":"f1df0be9-eb20-ba20-d320-c2e92546a793","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-testcapture/providers/microsoft.storage/storageaccounts/lmazueltestcapture451_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-testcapture/providers/microsoft.storage/storageaccounts/lmazueltestcapture451"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-testcapture/providers/Microsoft.Security/locations/centralus/tasks/fa711362-b185-5491-f7ac-1b86b7b2d9db","name":"fa711362-b185-5491-f7ac-1b86b7b2d9db","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-testcapture/providers/microsoft.storage/storageaccounts/lmazueltestcapture451_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-testcapture/providers/microsoft.storage/storageaccounts/lmazueltestcapture451"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/4e9afb48-37f8-39d0-a43b-91d8594c4928","name":"4e9afb48-37f8-39d0-a43b-91d8594c4928","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-05-29T14:56:14.5725041Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image","vmName":"vm-from-image","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":false,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/50859722-5bc3-e936-8227-f29fb77dcc8c","name":"50859722-5bc3-e936-8227-f29fb77dcc8c","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-05-29T14:56:14.5725041Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-deb-unmanaged","vmName":"tosin-deb-unmanaged","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":true,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-deb-unmanaged","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-deb-unmanaged"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/87978f5e-11f6-5d18-3340-0dd48e897708","name":"87978f5e-11f6-5d18-3340-0dd48e897708","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-05-30T02:56:22.5890922Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image-2","vmName":"vm-from-image-2","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":false,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image-2","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/vm-from-image-2"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/970edb98-3518-0be5-0a66-659855467472","name":"970edb98-3518-0be5-0a66-659855467472","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-05-31T02:55:35.501955Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-vm","vmName":"tosin-vm","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":true,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-vm","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-vm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/aafd72ce-073d-2f27-6045-6a734f1a0058","name":"aafd72ce-073d-2f27-6045-6a734f1a0058","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-06-01T02:55:29.0319227Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-accel","vmName":"tosin-accel","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":true,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-accel","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-accel"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Security/locations/centralus/tasks/c56ce869-aec8-ea26-fbdd-f1095eceb3d4","name":"c56ce869-aec8-ea26-fbdd-f1095eceb3d4","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Resolved","subState":"Unknown","creationTimeUtc":"2019-05-21T02:55:45.1502053Z","lastStateChangeTimeUtc":"2019-06-05T14:56:01.3641259Z","securityTaskParameters":{"vmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-debian","vmName":"tosin-debian","severity":"High","isOsDiskEncrypted":false,"isDataDiskEncrypted":false,"name":"EncryptionOnVm","uniqueKey":"EncryptionOnVmTaskParameters_/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-debian","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OVA-TEST/providers/Microsoft.Compute/virtualMachines/tosin-debian"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/Microsoft.Security/locations/centralus/tasks/1116cf3d-6924-b569-1ae3-ae679c646c3d","name":"1116cf3d-6924-b569-1ae3-ae679c646c3d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.8951546Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.8951546Z","securityTaskParameters":{"resourceType":"Microsoft_KeyVault_vaults","category":"IdentityAndAccess","assessmentKey":"88bbc99c-e5af-ddd7-6105-6150b2bfa519","policyName":"Enable + diagnostics logs in Key Vault","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/microsoft.keyvault/vaults/pylab34410fc37265_88bbc99c-e5af-ddd7-6105-6150b2bfa519","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/microsoft.keyvault/vaults/pylab34410fc37265"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/Microsoft.Security/locations/centralus/tasks/b7a67355-875d-4fde-ea0e-60f347f4d38d","name":"b7a67355-875d-4fde-ea0e-60f347f4d38d","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/microsoft.storage/storageaccounts/apylab34410fc39961_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/microsoft.storage/storageaccounts/apylab34410fc39961"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Security/locations/centralus/tasks/d6a1f916-f061-f3d2-bb75-16bda7e35f43","name":"d6a1f916-f061-f3d2-bb75-16bda7e35f43","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Networking","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Restrict + access to storage accounts with firewall and virtual network configurations","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/wilxgroup3/providers/microsoft.storage/storageaccounts/wilxstorageworm_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/wilxgroup3/providers/microsoft.storage/storageaccounts/wilxstorageworm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Security/locations/centralus/tasks/fe588c39-99b4-9935-2599-5120ece59330","name":"fe588c39-99b4-9935-2599-5120ece59330","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:01.0201533Z","lastStateChangeTimeUtc":"2019-06-05T14:57:01.0201533Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"1c5de8e1-f68d-6a17-e0d2-ec259c42768c","policyName":"Require + secure transfer to storage account","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/wilxgroup3/providers/microsoft.storage/storageaccounts/wilxstorageworm_1c5de8e1-f68d-6a17-e0d2-ec259c42768c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/wilxgroup3/providers/microsoft.storage/storageaccounts/wilxstorageworm"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/1bb093de-8e3b-5a88-1e5f-e38963494ddd","name":"1bb093de-8e3b-5a88-1e5f-e38963494ddd","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"f0553104-cfdb-65e6-759c-002812e38500","policyName":"Provision + an Azure AD administrator for SQL server","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver_f0553104-cfdb-65e6-759c-002812e38500","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/258b3667-7d66-9158-07df-635e9f5b3bef","name":"258b3667-7d66-9158-07df-635e9f5b3bef","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"1db4f204-cb5a-4c9c-9254-7556403ce51c","policyName":"Enable + vulnerability assessment on your SQL servers","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver_1db4f204-cb5a-4c9c-9254-7556403ce51c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Security/locations/centralus/tasks/45da2eb1-716c-2126-2f00-8f497656cc23","name":"45da2eb1-716c-2126-2f00-8f497656cc23","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-05-25T14:55:30.4237822Z","lastStateChangeTimeUtc":"2019-05-25T14:55:30.4237822Z","securityTaskParameters":{"serverName":"ygreadyserver","serverId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygreadyserver","name":"Enable + auditing for the SQL server","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygreadyserver/auditingPolicies/Default","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/487c9baa-9523-ac77-a5a0-fef925f72611","name":"487c9baa-9523-ac77-a5a0-fef925f72611","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"400a6682-992c-4726-9549-629fbc3b988f","policyName":"Enable + Advanced data security on your SQL servers","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver_400a6682-992c-4726-9549-629fbc3b988f","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/4e170430-a249-681b-d755-a4ab5e37c22b","name":"4e170430-a249-681b-d755-a4ab5e37c22b","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"1db4f204-cb5a-4c9c-9254-7556403ce51c","policyName":"Enable + vulnerability assessment on your SQL servers","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver_1db4f204-cb5a-4c9c-9254-7556403ce51c","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Security/locations/centralus/tasks/69f48b3e-de89-d6f5-1efb-8d25388adbe6","name":"69f48b3e-de89-d6f5-1efb-8d25388adbe6","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-05-25T14:55:30.4237822Z","lastStateChangeTimeUtc":"2019-05-25T14:55:30.4237822Z","securityTaskParameters":{"serverName":"ygmyreadyserver","serverId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygmyreadyserver","name":"Enable + auditing for the SQL server","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygmyreadyserver/auditingPolicies/Default","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YGReadyWorkshop/providers/Microsoft.Sql/servers/ygmyreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/9130c9e8-1e08-9c1f-2e6d-c29513149786","name":"9130c9e8-1e08-9c1f-2e6d-c29513149786","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"400a6682-992c-4726-9549-629fbc3b988f","policyName":"Enable + Advanced data security on your SQL servers","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver_400a6682-992c-4726-9549-629fbc3b988f","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygmyreadyserver"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygreadyworkshop/providers/Microsoft.Security/locations/centralus/tasks/e9d46a10-23ee-4e4a-7495-584f3a34afbb","name":"e9d46a10-23ee-4e4a-7495-584f3a34afbb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:56:02.0515767Z","lastStateChangeTimeUtc":"2019-06-05T14:56:02.0515767Z","securityTaskParameters":{"resourceType":"SqlServer","category":"Data","assessmentKey":"f0553104-cfdb-65e6-759c-002812e38500","policyName":"Provision + an Azure AD administrator for SQL server","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver_f0553104-cfdb-65e6-759c-002812e38500","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ygreadyworkshop/providers/Microsoft.Sql/servers/ygreadyserver"}}}]}' headers: - cache-control: [no-cache] - content-length: ['142036'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:52 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-original-request-ids: [cab99312-bf2a-4a81-876a-26149bf7f6f2, '', ''] - x-ms-ratelimit-remaining-subscription-resource-requests: ['749'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '109330' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:11:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - cf524187-a3e5-4b5e-aee4-67b0a8dc57fd + - '' + - '' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '749' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task show] - Connection: [keep-alive] - ParameterSetName: [-g -n] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task show + Connection: + - keep-alive + 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-security/0.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/providers/Microsoft.Security/locations?api-version=2015-06-01-preview response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}'} + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}' headers: - cache-control: [no-cache] - content-length: ['222'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:53 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [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-resource-requests: ['99'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '222' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:11:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - 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-resource-requests: + - '99' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task show] - Connection: [keep-alive] - ParameterSetName: [-g -n] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task show + Connection: + - keep-alive + 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-security/0.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/defaultresourcegroup-cus/providers/Microsoft.Security/locations/centralus/tasks/955341c6-0c5c-6965-6ac2-3b75b04b9eb3?api-version=2015-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alexghi/providers/Microsoft.Security/locations/centralus/tasks/4ee22cce-2e54-e952-cb39-564e83c33980?api-version=2015-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-cus/providers/Microsoft.Security/locations/centralus/tasks/955341c6-0c5c-6965-6ac2-3b75b04b9eb3","name":"955341c6-0c5c-6965-6ac2-3b75b04b9eb3","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-12-26T21:10:21.4198326Z","lastStateChangeTimeUtc":"2018-12-26T21:10:21.4198326Z","securityTaskParameters":{"resourceType":"StorageAccount","category":"Data","assessmentKey":"45d313c3-3fca-5040-035f-d61928366d31","policyName":"Disable - unrestricted network access to storage account","policyDefinitionId":"/providers/microsoft.authorization/policydefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c","severity":"High","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-cus/providers/microsoft.storage/storageaccounts/samplestorageaccount2_45d313c3-3fca-5040-035f-d61928366d31","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-cus/providers/microsoft.storage/storageaccounts/samplestorageaccount2"}}}'} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alexghi/providers/Microsoft.Security/locations/centralus/tasks/4ee22cce-2e54-e952-cb39-564e83c33980","name":"4ee22cce-2e54-e952-cb39-564e83c33980","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2019-06-05T14:57:00.9420257Z","lastStateChangeTimeUtc":"2019-06-05T14:57:00.9420257Z","securityTaskParameters":{"resourceType":"Microsoft_ServiceBus_namespaces","category":"Compute","assessmentKey":"f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","policyName":"Enable + diagnostics logs in Service Bus","severity":"Low","name":"GenericSecuirtyTask","uniqueKey":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisb_f19ab7d9-5ff2-f8fd-ab3b-0bf95dcb6889","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alexghi/providers/microsoft.servicebus/namespaces/alexghisb"}}}' headers: - cache-control: [no-cache] - content-length: ['1189'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:54 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [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-resource-requests: ['99'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '1000' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:11:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - 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-resource-requests: + - '99' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task show] - Connection: [keep-alive] - ParameterSetName: [-n] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task show + Connection: + - keep-alive + ParameterSetName: + - -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-security/0.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/providers/Microsoft.Security/locations?api-version=2015-06-01-preview response: - body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}'} + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus","name":"centralus","type":"Microsoft.Security/locations","properties":{"homeRegionName":"centralus"}}]}' headers: - cache-control: [no-cache] - content-length: ['222'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:54 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [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-resource-requests: ['98'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '222' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:12:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - 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-resource-requests: + - '99' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [security task show] - Connection: [keep-alive] - ParameterSetName: [-n] - User-Agent: [python/3.7.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34 - azure-mgmt-security/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.54] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - security task show + Connection: + - keep-alive + ParameterSetName: + - -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-security/0.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/providers/Microsoft.Security/locations/centralus/tasks/05e4625a-3ba1-5ce5-badc-bde930a8becd?api-version=2015-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/0d0ae48a-fd48-6ce4-2a81-64237c100bdb?api-version=2015-06-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/05e4625a-3ba1-5ce5-badc-bde930a8becd","name":"05e4625a-3ba1-5ce5-badc-bde930a8becd","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2018-09-15T10:12:44.4149947Z","lastStateChangeTimeUtc":"2018-09-15T10:12:44.4149947Z","securityTaskParameters":{"subscriptionId":"487bb485-b5b0-471e-9c0d-10717612f869","baselineRuleId":"b75811fe-ac22-4171-9511-27fec5177351","baselineName":"Windows - Firewall: Domain: Allow unicast response","baselineCceId":"AZ-WIN-00088","osName":"Windows - Server 2016 Datacenter","severity":"Warning","ruleType":"RegistryKey","workspaces":[{"workspaceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-487bb485-b5b0-471e-9c0d-10717612f869-weu","serverCount":1}],"totalNumberOfDefectedMachines":1,"name":"Subscription - has machines with failed baseline rule","uniqueKey":"487bb485-b5b0-471e-9c0d-10717612f869_b75811fe-ac22-4171-9511-27fec5177351","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}}'} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/locations/centralus/tasks/0d0ae48a-fd48-6ce4-2a81-64237c100bdb","name":"0d0ae48a-fd48-6ce4-2a81-64237c100bdb","type":"Microsoft.Security/locations/centralus/tasks","properties":{"state":"Active","subState":"NA","creationTimeUtc":"2017-03-22T19:22:11.0945027Z","lastStateChangeTimeUtc":"2017-03-22T19:22:11.0945027Z","securityTaskParameters":{"name":"Enable + Security Contact Configuration in Policy","uniqueKey":"00977cdb-163f-435f-9c32-39ec8ae61f4d","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000"}}}' headers: - cache-control: [no-cache] - content-length: ['1229'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 26 Dec 2018 23:49:55 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [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-resource-requests: ['99'] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '607' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 05 Jun 2019 20:12:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - 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-resource-requests: + - '99' + status: + code: 200 + message: OK version: 1 diff --git a/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/test_tasks_scenario.py b/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/test_tasks_scenario.py index 075fc9edffb..af3a78a450d 100644 --- a/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/test_tasks_scenario.py +++ b/src/command_modules/azure-cli-security/azure/cli/command_modules/security/tests/latest/test_tasks_scenario.py @@ -5,6 +5,7 @@ from azure.cli.testsdk import ScenarioTest from azure_devtools.scenario_tests import AllowLargeResponse +from msrestazure.tools import parse_resource_id import re @@ -15,18 +16,21 @@ def test_security_tasks(self): tasks = self.cmd('az security task list').get_output_in_json() - assert len(tasks) >= 0 + self.assertGreaterEqual(len(tasks), 0) - rg_task = next(task for task in tasks if "resourceGroups" in task["id"]) + rg_task = next(task for task in tasks if parse_resource_id(task['id']).get('resource_group', None)) - match = re.search('resourceGroups/([^/]+)', rg_task["id"]) + self.kwargs.update({ + 'task_id': parse_resource_id(rg_task['id'])['resource_group'], + 'task_name': rg_task["name"], + }) - task = self.cmd('az security task show -g ' + match.group(1) + ' -n ' + rg_task["name"]).get_output_in_json() + task = self.cmd('az security task show -g {task_id} -n {task_name}').get_output_in_json() - assert task is not None + self.assertIsNotNone(task) subscription_task = next(task for task in tasks if "resourceGroups" not in task["id"]) task = self.cmd('az security task show -n ' + subscription_task["name"]).get_output_in_json() - assert task is not None + self.assertIsNotNone(task) 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 6a7344bf542..68274c5824d 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,208 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-19T16:25:34Z"}}' - 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.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 - 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-03-19T16:25:34Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Mar 2019 16:25: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: '{"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.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 - 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: - - Tue, 19 Mar 2019 16:25:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2d9f7e0a-8a22-46ab-8a09-7e089ea5fff9?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.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2d9f7e0a-8a22-46ab-8a09-7e089ea5fff9?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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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: - - Tue, 19 Mar 2019 16:25:54 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.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 - 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: - - Tue, 19 Mar 2019 16:25:55 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: @@ -217,15 +13,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:34Z"},"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-05-26T07:01:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -234,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:25:55 GMT + - Sun, 26 May 2019 07:02:04 GMT expires: - '-1' pragma: @@ -268,15 +64,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -285,7 +81,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:25:56 GMT + - Sun, 26 May 2019 07:02:05 GMT expires: - '-1' pragma: @@ -301,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -319,15 +115,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -336,7 +132,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:25:56 GMT + - Sun, 26 May 2019 07:02:06 GMT expires: - '-1' pragma: @@ -375,15 +171,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -392,7 +188,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:25:57 GMT + - Sun, 26 May 2019 07:02:07 GMT expires: - '-1' pragma: @@ -408,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -426,15 +222,15 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -443,7 +239,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:25:57 GMT + - Sun, 26 May 2019 07:02:08 GMT expires: - '-1' pragma: @@ -482,15 +278,15 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -499,7 +295,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:25:58 GMT + - Sun, 26 May 2019 07:02:09 GMT expires: - '-1' pragma: @@ -533,15 +329,15 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:34Z"},"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-05-26T07:01:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -550,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:00 GMT + - Sun, 26 May 2019 07:02:10 GMT expires: - '-1' pragma: @@ -584,32 +380,32 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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.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/\\\"f54f2f72-6860-464e-90b9-5e3bc82ee551\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"77dd9daa-65c0-47f5-9251-e4effbac40cf\",\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/\\\"f54f2f72-6860-464e-90b9-5e3bc82ee551\\\"\",\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 ],\r\n \"virtualNetworkPeerings\": - [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": - false\r\n }\r\n}" + 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 \ + \ \"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\"\ + ,\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 \"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\ + \ ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : 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/5a5dd9cb-cb85-457a-8b8a-2b5e12f06dc5?api-version=2017-10-01 + - 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 cache-control: - no-cache content-length: @@ -617,7 +413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:01 GMT + - Sun, 26 May 2019 07:02:11 GMT expires: - '-1' pragma: @@ -630,7 +426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -648,10 +444,10 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a5dd9cb-cb85-457a-8b8a-2b5e12f06dc5?api-version=2017-10-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -663,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:04 GMT + - Sun, 26 May 2019 07:02:15 GMT expires: - '-1' pragma: @@ -696,27 +492,27 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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/\\\"5854506c-3202-4568-aea7-b0063b68f5b1\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"77dd9daa-65c0-47f5-9251-e4effbac40cf\",\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/\\\"5854506c-3202-4568-aea7-b0063b68f5b1\\\"\",\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 ],\r\n \"virtualNetworkPeerings\": - [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": - false\r\n }\r\n}" + 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 \ + \ \"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\"\ + ,\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 \"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\ + \ ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -725,9 +521,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:04 GMT + - Sun, 26 May 2019 07:02:15 GMT etag: - - W/"5854506c-3202-4568-aea7-b0063b68f5b1" + - W/"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef" expires: - '-1' pragma: @@ -760,18 +556,19 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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.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/\\\"5854506c-3202-4568-aea7-b0063b68f5b1\\\"\",\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}" + 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 \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ + \r\n}" headers: cache-control: - no-cache @@ -780,9 +577,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:05 GMT + - Sun, 26 May 2019 07:02:16 GMT etag: - - W/"5854506c-3202-4568-aea7-b0063b68f5b1" + - W/"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef" expires: - '-1' pragma: @@ -805,7 +602,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/\\"5854506c-3202-4568-aea7-b0063b68f5b1\\""}''' + "etag": "W/\\"d710cdaf-cfcf-404e-8c5e-7a9c1be425ef\\""}''' headers: Accept: - application/json @@ -822,24 +619,25 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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.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/\\\"afc9a76b-8a93-4058-a9fe-2fa5e2c27aee\\\"\",\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\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n - \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + 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 \ + \ \"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\"\ + : \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\ + ,\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"\ + 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/edd02d02-67b7-4ad8-b99a-0ead813670f7?api-version=2017-10-01 + - 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 cache-control: - no-cache content-length: @@ -847,7 +645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:05 GMT + - Sun, 26 May 2019 07:02:16 GMT expires: - '-1' pragma: @@ -864,55 +662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --service-endpoints - User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edd02d02-67b7-4ad8-b99a-0ead813670f7?api-version=2017-10-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: - - Tue, 19 Mar 2019 16:26:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' status: code: 200 message: OK @@ -930,10 +680,10 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edd02d02-67b7-4ad8-b99a-0ead813670f7?api-version=2017-10-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -945,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:19 GMT + - Sun, 26 May 2019 07:02:21 GMT expires: - '-1' pragma: @@ -978,19 +728,20 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 networkmanagementclient/2.6.0rc1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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/\\\"d04d2893-528a-4807-9134-05bfe00e8872\\\"\",\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\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n - \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + 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 \ + \ \"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\"\ + : \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\ + ,\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"\ + type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache @@ -999,9 +750,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Mar 2019 16:26:19 GMT + - Sun, 26 May 2019 07:02:21 GMT etag: - - W/"d04d2893-528a-4807-9134-05bfe00e8872" + - W/"c7cc5250-8e64-4519-8889-98e66a29339d" expires: - '-1' pragma: @@ -1034,15 +785,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1051,7 +802,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:20 GMT + - Sun, 26 May 2019 07:02:22 GMT expires: - '-1' pragma: @@ -1089,15 +840,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1106,7 +857,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:20 GMT + - Sun, 26 May 2019 07:02:24 GMT expires: - '-1' pragma: @@ -1140,15 +891,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1157,7 +908,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:21 GMT + - Sun, 26 May 2019 07:02:24 GMT expires: - '-1' pragma: @@ -1195,15 +946,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1212,7 +963,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:21 GMT + - Sun, 26 May 2019 07:02:25 GMT expires: - '-1' pragma: @@ -1228,7 +979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1246,15 +997,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1263,7 +1014,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:21 GMT + - Sun, 26 May 2019 07:02:25 GMT expires: - '-1' pragma: @@ -1302,15 +1053,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1319,7 +1070,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:23 GMT + - Sun, 26 May 2019 07:02:28 GMT expires: - '-1' pragma: @@ -1353,15 +1104,15 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1370,7 +1121,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:23 GMT + - Sun, 26 May 2019 07:02:28 GMT expires: - '-1' pragma: @@ -1402,15 +1153,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1419,7 +1170,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:23 GMT + - Sun, 26 May 2019 07:02:30 GMT expires: - '-1' pragma: @@ -1458,15 +1209,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1475,7 +1226,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:24 GMT + - Sun, 26 May 2019 07:02:31 GMT expires: - '-1' pragma: @@ -1491,7 +1242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1509,15 +1260,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1526,7 +1277,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:24 GMT + - Sun, 26 May 2019 07:02:32 GMT expires: - '-1' pragma: @@ -1564,15 +1315,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1581,7 +1332,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:25 GMT + - Sun, 26 May 2019 07:02:34 GMT expires: - '-1' pragma: @@ -1597,7 +1348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1615,15 +1366,15 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.60 + - 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 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-03-19T16:25:36.6366434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-19T16:25:36.6366434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-19T16:25:36.4647684Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1632,7 +1383,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Mar 2019 16:26:25 GMT + - Sun, 26 May 2019 07:02:34 GMT expires: - '-1' pragma: @@ -1650,51 +1401,4 @@ 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.2 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 - 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: - - Tue, 19 Mar 2019 16:26:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNUUTdLM3w3RTkxMkQ1REVDN0RBNDZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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 1086b9cbc3c..953b3f91d39 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,207 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-05-30T21:07: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 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - 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-05-30T21:07:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 30 May 2019 21:07:52 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"}' - 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 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - 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: - - Thu, 30 May 2019 21:07:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b668e72d-bbbc-4677-a890-bb94d66992b4?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 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b668e72d-bbbc-4677-a890-bb94d66992b4?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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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: - - Thu, 30 May 2019 21:08: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 - 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 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - 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: - - Thu, 30 May 2019 21:09:08 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: @@ -216,15 +13,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-30T21:07:49Z"},"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-03T17:13:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -233,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:09 GMT + - Mon, 03 Jun 2019 17:14:01 GMT expires: - '-1' pragma: @@ -266,15 +63,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -283,7 +80,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:10 GMT + - Mon, 03 Jun 2019 17:14:02 GMT expires: - '-1' pragma: @@ -317,15 +114,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -334,7 +131,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:11 GMT + - Mon, 03 Jun 2019 17:14:04 GMT expires: - '-1' pragma: @@ -373,15 +170,15 @@ interactions: ParameterSetName: - -g -n --bypass --default-action User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -390,7 +187,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:11 GMT + - Mon, 03 Jun 2019 17:14:05 GMT expires: - '-1' pragma: @@ -424,15 +221,15 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -441,7 +238,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:12 GMT + - Mon, 03 Jun 2019 17:14:05 GMT expires: - '-1' pragma: @@ -480,15 +277,15 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -497,7 +294,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:13 GMT + - Mon, 03 Jun 2019 17:14:07 GMT expires: - '-1' pragma: @@ -531,15 +328,15 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-30T21:07:49Z"},"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-03T17:13:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -548,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:13 GMT + - Mon, 03 Jun 2019 17:14:08 GMT expires: - '-1' pragma: @@ -582,32 +379,32 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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.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/\\\"150cb205-4991-4659-acdc-e4add4cd4176\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"86841819-a040-4453-9ac2-725b41a60dc7\",\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/\\\"150cb205-4991-4659-acdc-e4add4cd4176\\\"\",\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\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + 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 \ + \ \"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\"\ + ,\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 \"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\"\ + \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : 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/ac6af360-93da-4d18-a236-a2403b547b07?api-version=2019-04-01 + - 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 cache-control: - no-cache content-length: @@ -615,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:14 GMT + - Mon, 03 Jun 2019 17:14:10 GMT expires: - '-1' pragma: @@ -646,10 +443,10 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac6af360-93da-4d18-a236-a2403b547b07?api-version=2019-04-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -661,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:18 GMT + - Mon, 03 Jun 2019 17:14:13 GMT expires: - '-1' pragma: @@ -694,27 +491,27 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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/\\\"6daeaf88-9547-4644-8b78-5c15e7824d1f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"86841819-a040-4453-9ac2-725b41a60dc7\",\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/\\\"6daeaf88-9547-4644-8b78-5c15e7824d1f\\\"\",\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 - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + 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 \ + \ \"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\"\ + ,\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 \"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 }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -723,9 +520,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:18 GMT + - Mon, 03 Jun 2019 17:14:15 GMT etag: - - W/"6daeaf88-9547-4644-8b78-5c15e7824d1f" + - W/"70b55382-4ff4-4217-a387-2272bc712ef2" expires: - '-1' pragma: @@ -758,18 +555,19 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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.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/\\\"6daeaf88-9547-4644-8b78-5c15e7824d1f\\\"\",\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}" + 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 \ + \ \"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}" headers: cache-control: - no-cache @@ -778,9 +576,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:19 GMT + - Mon, 03 Jun 2019 17:14:16 GMT etag: - - W/"6daeaf88-9547-4644-8b78-5c15e7824d1f" + - W/"70b55382-4ff4-4217-a387-2272bc712ef2" expires: - '-1' pragma: @@ -803,7 +601,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/\\"6daeaf88-9547-4644-8b78-5c15e7824d1f\\""}''' + "name": "subnet1", "etag": "W/\\"70b55382-4ff4-4217-a387-2272bc712ef2\\""}''' headers: Accept: - application/json @@ -820,24 +618,26 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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.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/\\\"c801ac8f-95da-4b6a-a251-722c2388295f\\\"\",\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\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n - \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n - \ ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + 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 \ + \ \"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\"\ + : \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\ + ,\r\n \"eastus\"\r\n ]\r\n }\r\n ],\r\n \"delegations\"\ + : []\r\n },\r\n \"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/1e94009f-4750-4755-90f0-aba53a302473?api-version=2019-04-01 + - 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 cache-control: - no-cache content-length: @@ -845,7 +645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:19 GMT + - Mon, 03 Jun 2019 17:14:17 GMT expires: - '-1' pragma: @@ -880,10 +680,10 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e94009f-4750-4755-90f0-aba53a302473?api-version=2019-04-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -895,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:22 GMT + - Mon, 03 Jun 2019 17:14:21 GMT expires: - '-1' pragma: @@ -928,19 +728,21 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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/\\\"d8aef5b5-dcef-4508-ae12-6ffe25223e1a\\\"\",\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\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n - \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n - \ ],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + 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 \ + \ \"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\"\ + : \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\ + ,\r\n \"eastus\"\r\n ]\r\n }\r\n ],\r\n \"delegations\"\ + : []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\ + \n}" headers: cache-control: - no-cache @@ -949,9 +751,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 May 2019 21:09:23 GMT + - Mon, 03 Jun 2019 17:14:22 GMT etag: - - W/"d8aef5b5-dcef-4508-ae12-6ffe25223e1a" + - W/"08accfbd-899e-42b0-877c-5acdb8f872b5" expires: - '-1' pragma: @@ -984,15 +786,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1001,7 +803,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:23 GMT + - Mon, 03 Jun 2019 17:14:23 GMT expires: - '-1' pragma: @@ -1039,15 +841,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1056,7 +858,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:24 GMT + - Mon, 03 Jun 2019 17:14:23 GMT expires: - '-1' pragma: @@ -1090,15 +892,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1107,7 +909,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:24 GMT + - Mon, 03 Jun 2019 17:14:25 GMT expires: - '-1' pragma: @@ -1145,15 +947,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1162,7 +964,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:25 GMT + - Mon, 03 Jun 2019 17:14:26 GMT expires: - '-1' pragma: @@ -1178,7 +980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1196,15 +998,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1213,7 +1015,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:25 GMT + - Mon, 03 Jun 2019 17:14:27 GMT expires: - '-1' pragma: @@ -1252,15 +1054,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1269,7 +1071,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:28 GMT + - Mon, 03 Jun 2019 17:14:29 GMT expires: - '-1' pragma: @@ -1303,15 +1105,15 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1320,7 +1122,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:29 GMT + - Mon, 03 Jun 2019 17:14:30 GMT expires: - '-1' pragma: @@ -1352,15 +1154,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1369,7 +1171,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:29 GMT + - Mon, 03 Jun 2019 17:14:31 GMT expires: - '-1' pragma: @@ -1408,15 +1210,15 @@ interactions: ParameterSetName: - -g --account-name --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1425,7 +1227,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:32 GMT + - Mon, 03 Jun 2019 17:14:32 GMT expires: - '-1' pragma: @@ -1459,15 +1261,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1476,7 +1278,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:32 GMT + - Mon, 03 Jun 2019 17:14:33 GMT expires: - '-1' pragma: @@ -1514,15 +1316,15 @@ interactions: ParameterSetName: - -g --account-name --vnet-name --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1531,7 +1333,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:09:35 GMT + - Mon, 03 Jun 2019 17:14:35 GMT expires: - '-1' pragma: @@ -1547,7 +1349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1565,15 +1367,15 @@ interactions: ParameterSetName: - -g --account-name User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.65 + - 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 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-05-30T21:07:55.1861470Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:07:55.1861470Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T21:07:55.0611499Z","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-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/"}}}' headers: cache-control: - no-cache @@ -1582,7 +1384,7 @@ interactions: content-type: - application/json date: - - Thu, 30 May 2019 21:10:04 GMT + - Mon, 03 Jun 2019 17:14:36 GMT expires: - '-1' pragma: @@ -1600,51 +1402,4 @@ 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 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - 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: - - Thu, 30 May 2019 21:10:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNUMlZaWnxDREU3RUFEOTJFQjgxN0FELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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