diff --git a/src/command_modules/azure-cli-acs/HISTORY.rst b/src/command_modules/azure-cli-acs/HISTORY.rst index badfcab617e..bd2bfd7f2fc 100644 --- a/src/command_modules/azure-cli-acs/HISTORY.rst +++ b/src/command_modules/azure-cli-acs/HISTORY.rst @@ -2,6 +2,9 @@ Release History =============== +2.3.12 +++++++ +* Minor fixes 2.3.11 ++++++ diff --git a/src/command_modules/azure-cli-acs/setup.py b/src/command_modules/azure-cli-acs/setup.py index de7efca4ccd..f8c262343a9 100644 --- a/src/command_modules/azure-cli-acs/setup.py +++ b/src/command_modules/azure-cli-acs/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.3.11" +VERSION = "2.3.12" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', @@ -33,7 +33,7 @@ 'azure-mgmt-authorization==0.50.0', 'azure-mgmt-compute==4.3.1', 'azure-mgmt-containerservice==4.2.2', - 'azure-graphrbac==0.52.0', + 'azure-graphrbac==0.53.0', 'azure-cli-core', 'paramiko>=2.0.8', 'pyyaml>=3.13', diff --git a/src/command_modules/azure-cli-ams/HISTORY.rst b/src/command_modules/azure-cli-ams/HISTORY.rst index 47ffc6f810e..bffa7f5999f 100644 --- a/src/command_modules/azure-cli-ams/HISTORY.rst +++ b/src/command_modules/azure-cli-ams/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.3.1 ++++++ +* Minor fixes + 0.3.0 +++++ * New command groups added: diff --git a/src/command_modules/azure-cli-ams/setup.py b/src/command_modules/azure-cli-ams/setup.py index 8e757336ee5..f501534eb36 100644 --- a/src/command_modules/azure-cli-ams/setup.py +++ b/src/command_modules/azure-cli-ams/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "0.3.0" +VERSION = "0.3.1" # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -34,7 +34,7 @@ DEPENDENCIES = [ 'azure-cli-core', 'azure-mgmt-media==1.0.1', - 'azure-graphrbac==0.52.0' + 'azure-graphrbac==0.53.0' ] with open('README.rst', 'r', encoding='utf-8') as f: diff --git a/src/command_modules/azure-cli-keyvault/HISTORY.rst b/src/command_modules/azure-cli-keyvault/HISTORY.rst index 23b74242980..4aacda9985a 100644 --- a/src/command_modules/azure-cli-keyvault/HISTORY.rst +++ b/src/command_modules/azure-cli-keyvault/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +2.2.8 ++++++ +* Minor fixes + 2.2.7 +++++ * bug fix: do not drop legit exceptions diff --git a/src/command_modules/azure-cli-keyvault/setup.py b/src/command_modules/azure-cli-keyvault/setup.py index b7a5294b5a2..328845ad15a 100644 --- a/src/command_modules/azure-cli-keyvault/setup.py +++ b/src/command_modules/azure-cli-keyvault/setup.py @@ -15,7 +15,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.2.7" +VERSION = "2.2.8" # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -36,7 +36,7 @@ DEPENDENCIES = [ 'azure-mgmt-keyvault==1.1.0', 'azure-keyvault==1.1.0', - 'azure-graphrbac==0.52.0', + 'azure-graphrbac==0.53.0', 'azure-cli-core', 'pyOpenSSL' ] diff --git a/src/command_modules/azure-cli-lab/HISTORY.rst b/src/command_modules/azure-cli-lab/HISTORY.rst index 6603f165c65..91ba4e69ad6 100644 --- a/src/command_modules/azure-cli-lab/HISTORY.rst +++ b/src/command_modules/azure-cli-lab/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.1.4 ++++++ +* Minor fixes + 0.1.3 +++++ * Minor changes diff --git a/src/command_modules/azure-cli-lab/setup.py b/src/command_modules/azure-cli-lab/setup.py index 4f00e6c5e53..ff735667056 100644 --- a/src/command_modules/azure-cli-lab/setup.py +++ b/src/command_modules/azure-cli-lab/setup.py @@ -12,7 +12,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "0.1.3" +VERSION = "0.1.4" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', @@ -29,7 +29,7 @@ DEPENDENCIES = [ 'azure-cli-core', - 'azure-graphrbac==0.52.0', + 'azure-graphrbac==0.53.0', 'azure-mgmt-devtestlabs==2.2.0' ] diff --git a/src/command_modules/azure-cli-role/HISTORY.rst b/src/command_modules/azure-cli-role/HISTORY.rst index 43ada8b6e7c..702b9224c3d 100644 --- a/src/command_modules/azure-cli-role/HISTORY.rst +++ b/src/command_modules/azure-cli-role/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +2.1.11 +++++++ +* support custom identifier for password credential + 2.1.10 ++++++ * `ad app update`: address a failure caused by updating immutable credentials diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py index 414fbd9753f..83f987fb7dc 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py @@ -43,6 +43,7 @@ def load_arguments(self, _): c.argument('required_resource_accesses', type=validate_file_or_dict, help="resource scopes and roles the application requires access to. Should be in manifest json format. See examples below for details") c.argument('native_app', arg_type=get_three_state_flag(), help="an application which can be installed on a user's device or computer") + c.argument('credential_description', help="the description of the password") with self.argument_context('ad app owner list') as c: c.argument('identifier', options_list=['--id'], help='identifier uri, application id, or object id of the application') @@ -80,6 +81,7 @@ def load_arguments(self, _): c.argument('create_cert', action='store_true', arg_group='Credential') c.argument('keyvault', arg_group='Credential') c.argument('append', action='store_true', help='Append the new credential instead of overwriting.') + c.argument('credential_description', help="the description of the password", arg_group='Credential') with self.argument_context('ad app credential reset') as c: c.argument('name', options_list=['--id'], help='identifier uri, application id, or object id') diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py index 6e59d159c44..577cd59f84e 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py @@ -23,6 +23,41 @@ def transform_assignment_list(result): ('Scope', r['scope'])]) for r in result] +def transform_graph_objects_with_cred(result): + # here we will convert utf16 encoded custom key id back to the plain text + # we will handle single object from "show" cmd, object list from "list" cmd, and cred object itself + if not result: + return result + from msrest.paging import Paged + from azure.graphrbac.models import PasswordCredential + + def _patch_creds(creds): + for c in creds: + custom_key_id = getattr(c, 'custom_key_identifier', None) + if custom_key_id: + try: + c.custom_key_identifier = custom_key_id.decode('utf-16') + except Exception: # pylint: disable=broad-except + c.custom_key_identifier = None + return creds + + singular = False + if isinstance(result, Paged): + result = list(result) + + if not isinstance(result, list): + singular = True + result = [result] + + for r in result: + if getattr(r, 'password_credentials', None): + _patch_creds(r.password_credentials) + + if isinstance(r, PasswordCredential): + _patch_creds([r]) + return result[0] if singular else result + + def graph_err_handler(ex): from azure.graphrbac.models import GraphErrorException if isinstance(ex, GraphErrorException): @@ -88,7 +123,7 @@ def load_command_table(self, _): g.custom_command('list-changelogs', 'list_role_assignment_change_logs') with self.command_group('ad app', client_factory=get_graph_client_applications, resource_type=PROFILE_TYPE, - exception_handler=graph_err_handler) as g: + exception_handler=graph_err_handler, transform=transform_graph_objects_with_cred) as g: g.custom_command('create', 'create_application') g.custom_command('delete', 'delete_application') g.custom_command('list', 'list_apps') @@ -109,7 +144,8 @@ def load_command_table(self, _): g.custom_command('add', 'add_application_owner') g.custom_command('remove', 'remove_application_owner') - with self.command_group('ad sp', resource_type=PROFILE_TYPE, exception_handler=graph_err_handler) as g: + with self.command_group('ad sp', resource_type=PROFILE_TYPE, exception_handler=graph_err_handler, + transform=transform_graph_objects_with_cred) as g: g.custom_command('create', 'create_service_principal') g.custom_command('delete', 'delete_service_principal') g.custom_command('list', 'list_sps', client_factory=get_graph_client_service_principals) @@ -119,7 +155,7 @@ def load_command_table(self, _): g.custom_command('list', 'list_service_principal_owners') # RBAC related - with self.command_group('ad sp', exception_handler=graph_err_handler) as g: + with self.command_group('ad sp', exception_handler=graph_err_handler, transform=transform_graph_objects_with_cred) as g: g.custom_command('create-for-rbac', 'create_service_principal_for_rbac') g.custom_command('credential reset', 'reset_service_principal_credential') g.custom_command('credential list', 'list_service_principal_credentials') diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py index f0f41916b66..77bd2aa887a 100644 --- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py +++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py @@ -5,6 +5,7 @@ from __future__ import print_function +import base64 import datetime import json import re @@ -643,7 +644,8 @@ def _resolve_group(client, identifier): def create_application(cmd, display_name, homepage=None, identifier_uris=None, available_to_other_tenants=False, password=None, reply_urls=None, key_value=None, key_type=None, key_usage=None, start_date=None, end_date=None, - oauth2_allow_implicit_flow=None, required_resource_accesses=None, native_app=None): + oauth2_allow_implicit_flow=None, required_resource_accesses=None, native_app=None, + credential_description=None): graph_client = _graph_client_factory(cmd.cli_ctx) key_creds, password_creds, required_accesses = None, None, None if native_app: @@ -653,8 +655,8 @@ def create_application(cmd, display_name, homepage=None, identifier_uris=None, else: if not identifier_uris: raise CLIError("'--identifier-uris' is required for creating an application") - password_creds, key_creds = _build_application_creds(password, key_value, key_type, - key_usage, start_date, end_date) + password_creds, key_creds = _build_application_creds(password, key_value, key_type, key_usage, + start_date, end_date, credential_description) if required_resource_accesses: required_accesses = _build_application_accesses(required_resource_accesses) @@ -856,8 +858,8 @@ def _resolve_application(client, identifier): return result[0].object_id if result else identifier -def _build_application_creds(password=None, key_value=None, key_type=None, - key_usage=None, start_date=None, end_date=None): +def _build_application_creds(password=None, key_value=None, key_type=None, key_usage=None, + start_date=None, end_date=None, key_description=None): if password and key_value: raise CLIError('specify either --password or --key-value, but not both.') @@ -871,18 +873,21 @@ def _build_application_creds(password=None, key_value=None, key_type=None, elif isinstance(end_date, str): end_date = dateutil.parser.parse(end_date) + custom_key_id = None + if key_description and password: + custom_key_id = _encode_custom_key_description(key_description) + key_type = key_type or 'AsymmetricX509Cert' key_usage = key_usage or 'Verify' password_creds = None key_creds = None if password: - password_creds = [PasswordCredential(start_date=start_date, end_date=end_date, - key_id=str(_gen_guid()), value=password)] + password_creds = [PasswordCredential(start_date=start_date, end_date=end_date, key_id=str(_gen_guid()), + value=password, custom_key_identifier=custom_key_id)] elif key_value: - key_creds = [KeyCredential(start_date=start_date, end_date=end_date, - key_id=str(_gen_guid()), value=key_value, - usage=key_usage, type=key_type)] + key_creds = [KeyCredential(start_date=start_date, end_date=end_date, key_id=str(_gen_guid()), value=key_value, + usage=key_usage, type=key_type, custom_key_identifier=custom_key_id)] return (password_creds, key_creds) @@ -1030,7 +1035,6 @@ def _process_service_principal_creds(cli_ctx, years, app_start_date, app_end_dat public_cert_string, cert_file, cert_start_date, cert_end_date = \ _create_self_signed_cert_with_keyvault(cli_ctx, years, keyvault, cert) elif keyvault: - import base64 # 6 - Use existing cert from KeyVault kv_client = _get_keyvault_client(cli_ctx) vault_base = 'https://{}{}/'.format(keyvault, cli_ctx.cloud.suffixes.keyvault_dns) @@ -1112,7 +1116,8 @@ def create_service_principal_for_rbac( password=password, key_value=public_cert_string, start_date=app_start_date, - end_date=app_end_date) + end_date=app_end_date, + credential_description='rbac') # pylint: disable=no-member app_id = aad_application.app_id @@ -1252,7 +1257,6 @@ def _create_self_signed_cert(start_date, end_date): # pylint: disable=too-many- def _create_self_signed_cert_with_keyvault(cli_ctx, years, keyvault, keyvault_cert_name): # pylint: disable=too-many-locals - import base64 import time kv_client = _get_keyvault_client(cli_ctx) @@ -1323,7 +1327,6 @@ def _try_x509_pem(cert): def _try_x509_der(cert): import OpenSSL.crypto - import base64 try: cert = base64.b64decode(cert) return OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_ASN1, cert) @@ -1341,8 +1344,8 @@ def _get_public(x509): return stripped -def reset_service_principal_credential(cmd, name, password=None, create_cert=False, - cert=None, years=None, keyvault=None, append=False): +def reset_service_principal_credential(cmd, name, password=None, create_cert=False, cert=None, years=None, + keyvault=None, append=False, credential_description=None): client = _graph_client_factory(cmd.cli_ctx) # pylint: disable=no-member @@ -1377,6 +1380,10 @@ def reset_service_principal_credential(cmd, name, password=None, create_cert=Fal app_creds = None cert_creds = None + custom_key_identifier = None + if credential_description and password: + custom_key_identifier = _encode_custom_key_description(credential_description) + if password: app_creds = [] if append: @@ -1385,7 +1392,8 @@ def reset_service_principal_credential(cmd, name, password=None, create_cert=Fal start_date=app_start_date, end_date=app_end_date, key_id=str(_gen_guid()), - value=password + value=password, + custom_key_identifier=custom_key_identifier )) if public_cert_string: @@ -1398,7 +1406,8 @@ def reset_service_principal_credential(cmd, name, password=None, create_cert=Fal value=public_cert_string, key_id=str(_gen_guid()), usage='Verify', - type='AsymmetricX509Cert' + type='AsymmetricX509Cert', + custom_key_identifier=custom_key_identifier )) app_create_param = ApplicationUpdateParameters(password_credentials=app_creds, key_credentials=cert_creds) @@ -1416,6 +1425,12 @@ def reset_service_principal_credential(cmd, name, password=None, create_cert=Fal return result +def _encode_custom_key_description(key_description): + # utf16 is used by AAD portal. Do not change it to other random encoding + # unless you know what you are doing. + return key_description.encode('utf-16') + + def _resolve_object_id(cli_ctx, assignee, fallback_to_object_id=False): client = _graph_client_factory(cli_ctx) result = None 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 91e41d731a2..24537c0b8d1 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 @@ -6,8 +6,9 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp create-for-rbac] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--name --skip-assignment] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 @@ -19,13 +20,13 @@ interactions: content-length: ['121'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:44 GMT'] - duration: ['340739'] + date: ['Mon, 26 Nov 2018 03:16:59 GMT'] + duration: ['469086'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [qS43F4iLBOJT6RGkkYs1XEqkZVQTuWFJkKZZm/yzJso=] - ocp-aad-session-key: [7DXxTYQh8Bo7O9O4-g3bmFc_EeW0Gm9cT2rS8L-bR2Tw2-w9_-zXTiifEoZmqx4Co1smKzJDN02Lp5yT3tVmtTxa2EOdFMm1VI2puj0XkInyTECGTwTVQ4RZ6qZ9abgTZCVR50bWlBtzylaW29x_bA.qSx2fRt70g1TLkDHrczHs35tmQPTBQWi-8dQlZ81v5c] + ocp-aad-diagnostics-server-name: [Fo1QicrIhHj2KR1ZzWvNa2KLRHgOjpt7/hmcNDActAs=] + ocp-aad-session-key: [2pa69N5xxJqly9j1npoA-3_w88jeuUXxTdA3droiGt5bShsMWQo3iwowGXbfhVmpDFfGbi3txcxJPbIr9XrDFZdiCwe79-sVPxzioN7YZFbumD7-yxNMnBKOuAzPrvrl.zWbQJhjMd1pMtADZy3BkUjnxdDaTH1tOUeHGFwrZAzI] pragma: [no-cache] - request-id: [abe833eb-473f-455b-a699-59b641d75cb8] + request-id: [d8b64a88-861e-493c-a6d0-56ac7e3f9b9b] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -33,44 +34,45 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: 'b''{"passwordCredentials": [{"keyId": "918ce74b-943a-4c28-94f3-f6c3dd036f0b", - "startDate": "2018-11-10T00:44:45.427028Z", "endDate": "2019-11-10T00:44:45.427028Z", - "value": "1a11d7d9-7491-4a83-a711-b503da909b45"}], "availableToOtherTenants": - false, "homepage": "https://cli-app-000001", "displayName": "cli-app-000001", - "identifierUris": ["http://cli-app-000001"]}''' + body: 'b''{"identifierUris": ["http://cli-app-000001"], "passwordCredentials": + [{"endDate": "2019-11-26T03:16:59.665363Z", "customKeyIdentifier": "//5yAGIAYQBjAA==", + "value": "70f6cf07-b7a7-4aa6-8f34-5b38e2f3f357", "keyId": "011674bd-f4f5-4588-8296-1ad362010395", + "startDate": "2018-11-26T03:16:59.665363Z"}], "availableToOtherTenants": false, + "displayName": "cli-app-000001", "homepage": "https://cli-app-000001"}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp create-for-rbac] Connection: [keep-alive] - Content-Length: ['364'] + Content-Length: ['407'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--name --skip-assignment] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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.mediaContentType":"application/json;odata=minimalmetadata; + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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.mediaContentType":"application/json;odata=minimalmetadata; charset=utf-8","logoUrl":null,"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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1989'] + content-length: ['2033'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:45 GMT'] - duration: ['5152959'] + date: ['Mon, 26 Nov 2018 03:17:00 GMT'] + duration: ['4840759'] expires: ['-1'] - location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application'] - ocp-aad-diagnostics-server-name: [nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk=] - ocp-aad-session-key: [sQQ6k5_xB99nduGSR8As0mwWIe8D5moXBy2KKoAaYIYBxmnr7VMSlNgV3AlBHe7oYhlx6wv-PbJ3BNd6HUAaZ3FHNOKvAU8h4TJBDUJtMXljxNNeJFzd2ii7TG3JQbpEvl6CmkXWenjE2TfI87w0FQ.d7aI7KXxblkHX9K1j_uBXqoNyMFPPDBDJj005PqOAOQ] + location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application'] + ocp-aad-diagnostics-server-name: [wyZ2chLc7keUKHMJZ5WTQztb1eGl2liBganf3B36Fuk=] + ocp-aad-session-key: [XkTVxLG0sybJhqW-GGxRSEgG5vcUWqnBSbXoULYOTtfbMdKdP0XjKULM8byja8dCrlSwq0ua1rJ6ut-xBHHolfS0k3AG7SgfZxzWnPaUqqfmRCAOQoJRwsdpnc2P9MBS8gz-R0T1r5tV8L6wdrQM7w.sHAUzixmy5gZQn8GxJ6wlO-HJmR-Jtqz4siI7Wg11Gs] pragma: [no-cache] - request-id: [e6f9f610-5b69-4cd3-b0b5-78947ee3cd84] + request-id: [6d684e7b-dada-438a-8c63-ead7d6d06c40] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -79,7 +81,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: - body: '{"appId": "565c2e77-5648-4a12-8458-4ec8df513abe", "accountEnabled": true}' + body: '{"accountEnabled": true, "appId": "9a0892fc-a72f-4e64-8499-31e813f205f5"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -87,31 +89,33 @@ interactions: Connection: [keep-alive] Content-Length: ['73'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--name --skip-assignment] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] 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/Microsoft.DirectoryServices.ServicePrincipal/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.ServicePrincipal/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["565c2e77-5648-4a12-8458-4ec8df513abe","http://cli-app-000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["9a0892fc-a72f-4e64-8499-31e813f205f5","http://cli-app-000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1459'] + content-length: ['1464'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:46 GMT'] - duration: ['2284720'] + date: ['Mon, 26 Nov 2018 03:17:01 GMT'] + duration: ['2253181'] expires: ['-1'] - location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d88b098f-bc21-4b61-8d4f-28832ae315c1/Microsoft.DirectoryServices.ServicePrincipal'] - ocp-aad-diagnostics-server-name: [Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0=] - ocp-aad-session-key: [UDai2ZLMFM5SI3NIK00cnHB9buhU2yEzCyvEDvRlDKdL8D-djUmeVflHyQtXDxUQxdKU-4AQCkAzBZHOIJ29B0FuMIb-Ag0-cW1nw0ch1muiMwwnui6HOPmX8IoMRXg_9UZRmlXlulMthhtRXnMOaA.MIaaHs0z5wopYQOEQl8J0QSEzU2VDK618y6n8WMwjpw] + location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/4bcfe84d-40de-47ce-a1e0-2466086a916a/Microsoft.DirectoryServices.ServicePrincipal'] + ocp-aad-diagnostics-server-name: [nz/XGp5Lt3UpE9jJSAaQvlkMcNgkH4RQOBn3fI2s7Mc=] + ocp-aad-session-key: [9HxjY-IImFPnj2fLJ1U2e-fwVZ1zDM1fEwwLHM3W--PfT-xO9slm4WaZl2Y4HC319kY8qwmNBRxoE81fCprxHvUwIe2z45wE7OiAGwuuTT9ckb5ojqquq7pzbMdom9-FsrYcUqFKMnJ8e1H1GEmRWg.fukC5MkHS6YpvqR8TBIpF5RxrwmsPahAZTgP0VSx67Y] pragma: [no-cache] - request-id: [2ec621c2-f466-47c5-b809-fb846b30dbea] + request-id: [1e237f98-7868-48f1-a527-d409fa10f647] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -126,30 +130,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:46 GMT'] - duration: ['424840'] + date: ['Mon, 26 Nov 2018 03:17:03 GMT'] + duration: ['571599'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [gXfFarcv2ysN8TtqVPgD1PYEnzY+oOLIPXpP5S4Cj3o=] - ocp-aad-session-key: [5HMYrgMS10PhuxUyVP0WmjM_Obgvsc2uefgvVQEVcrjuzi472Tj1Tp2_iV1JaTB_EsYCDXLRAupkE1RqOnGduOpo0-C2f5Tt3byauQKfXZbOLnL9W85JoulpD5_5hVLa7opCqcyO9zYkStmo7JP7kg.8rMwvPez1ADNhnmcLsy7UvzZ42vHZBOfjdX20ZBEslk] + ocp-aad-diagnostics-server-name: [uvPTCZ5YaY3P1obgmri12BXUydEZzky/GuuHPXDOJbo=] + ocp-aad-session-key: [eyu-oVE1-NY-GeIXtnr0fklBN5vvO7hdthto-8FNe_l9Ag1lVZqfO3cjgWrfe9g8pLJptnV1N_e-NO8cfjK2YSFWCvoj-sVzPPwH_NfQ1Wr0_DgeJhadeMX4mCx2NIG2uEMlPVq6wc6Hj2ye02feog.0sGktloFY18l_ViGuxD4y7hWZn8iK-zmSXfQJ6k3Ozw] pragma: [no-cache] - request-id: [b1d703d4-fae9-4b3d-a030-0bac6b9cd10b] + request-id: [531495d3-88b7-4608-883d-f581af99a62d] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -163,30 +169,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/d88b098f-bc21-4b61-8d4f-28832ae315c1?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/4bcfe84d-40de-47ce-a1e0-2466086a916a?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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1414'] + content-length: ['1419'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:46 GMT'] - duration: ['806252'] + date: ['Mon, 26 Nov 2018 03:17:04 GMT'] + duration: ['1587032'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [aHT5PI9GgMnCtbkQT7/ZEgyUnSyF7IW2bcrqij4e/bI=] - ocp-aad-session-key: [2HpZVGOPeK-XrLIVUW2yVrYuphnlwG0PHz-zvrI5OFuP7ldd1swb3gLwGPntcPv4H-iM54tL-uGeDOUZ_5BgFpqkCGbEFHMp26HAui300yLBeyzREeHNygbCqQUkj0AmbEdt6QAlPA2dAimNWt4-kw.J12il3zjlix8wY0Mabl7bRVcvNu6vYz_9XvwxJnIDuM] + ocp-aad-diagnostics-server-name: [tw4fYXYGY2N8zzisqCfrGN37d/pH/8bdST30drhOOag=] + ocp-aad-session-key: [wem77K34BqJQ1GS4K517E7WDVJ30l2JYOQ4neKPIvlTNePqvm4KrFvIIHIfHVQSnIEZNSkxDyFrrORoMx8dxHPD2okKCcypPDDX7tWIppZuXgZKaeMzgyvj37ZUbAeNUQ91WMYwnMU4--koJQV-xoA.PyG2PhqvbvYi5yyS3lNY2EqvcVHjRth583KN32JxiqM] pragma: [no-cache] - request-id: [7716c120-eb09-4e13-96fb-91f444bf42b0] + request-id: [99ba9516-43e0-4857-b938-542ad716cbaf] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -200,30 +208,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2174'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:46 GMT'] - duration: ['431794'] + date: ['Mon, 26 Nov 2018 03:17:04 GMT'] + duration: ['377994'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [qZIv9ellq3w2fi4Frv5Uk50GFg2QtOwXyXvP/LyXimo=] - ocp-aad-session-key: [n_6UQdPfuRpD_ABCK6eg3enM8GINa1oTxB0LgbdoN8VWG0RxEtGE1LOVCQgKK8yiOKPW4RQby6U6k5MBPu1aL7gRz7yyrqyNusz5OL96upoy-7Zd3Y1q8NqIl_9kscnn5xCO0wSfpCnrWfGM8Sq6KA.SylHnZqJPb3xo7j8tj1Lso13FtFS9ksVw9ndAcRggR0] + ocp-aad-diagnostics-server-name: [O4KpSJbi5/6YCC+tDQQlh4m8zzG+ja7BdgLs4Moxbzs=] + ocp-aad-session-key: [gAu-1wtMWGBkEJzeL9DeVkURAlR3ckYf_G71IY279LYJFDMJYLq7EQpRLR19r1nTnLLqJdgudW17dGDU99Q9EuRzLP6uxyfOgeP0IBamSMRog2g0SyGQq8B9Ie27XBfpYr2PtoKBDsyJ79HKl2YOiw.A13B0H0FPV99eUeKlO0jlH23OR-n6xPyU_2x418pzyI] pragma: [no-cache] - request-id: [723795d4-a4b8-4165-bff1-77bcf56ac85d] + request-id: [d8064a97-57d9-46ae-9d03-4f6a33950de9] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -237,26 +246,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['347'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:46 GMT'] - duration: ['359685'] + date: ['Mon, 26 Nov 2018 03:17:04 GMT'] + duration: ['473329'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [T8XZkzrl2aupEbCD6UYjY32Rv0txL1m39kZkE588G30=] - ocp-aad-session-key: [cG1xMNYaeQXbivFGQcTAODuEyTtJ36BFbDoajdcjK0tXf3z4axP8gsQGZSckdaHMwhro8bmfsIomjo1utCk8p9wOT3SyYdwrpja4DtxhIMLXddhQLtXlJMn8z53zhWoqMa_ApSV_v7mcGBaOWLRwZw.nNQCQ3PgeND6nwgekT8WuyPcdfhdGPltCRwBPieCdd8] + ocp-aad-diagnostics-server-name: [lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI=] + ocp-aad-session-key: [ucVJgyZIMVtt-8M8WsixVfrAVexCaxU9BSe_QuvAWGJcZ5xPDIqE6SVV_9D-2s82I6oK2IcTwrtkyUJmldGrCDjqu6qfqho67mXkjJ0T1cUtEo2SK-qOoGyRiCzHd3178T5fml05JALc9UQplCDWQA.Ric1_t1T1zcpwWl6VDJTKY1lvXqYeUdpbgjyXyDyTvg] pragma: [no-cache] - request-id: [24320814-0a02-4dde-8d7e-66b95f2e24a4] + request-id: [221a68ff-f405-4f05-a8db-cc2e34d816c9] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -270,30 +280,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$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 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:47 GMT'] - duration: ['582448'] + date: ['Mon, 26 Nov 2018 03:17:06 GMT'] + duration: ['590079'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [NorBiSXbBacugIOc9PINP1SvB49TAti3iq1gEzH+f90=] - ocp-aad-session-key: [UKh3CroCZGYdZz_NWi_OP_YFQWscz1sy0Isar0Z0CuqvAv64K7JNCiPvEbspiaKBoY2Io3cuJeGSA5BTMI5M7CSiBdJF0zo1CtsQQ-3u0XTQS9IS65Qs_22WnCt-vaGWgQsFnFg2IuEu-mMNfrC0hg.e7_deR1Nqq6YTytXXVJIcB1RdJhyvvRDSLsXv6DyktE] + ocp-aad-diagnostics-server-name: [9GQqI6S1ECS4j4T2qnjxLorVEkd1sq21GP7tQfmsPNE=] + ocp-aad-session-key: [Y4I4hGGK-R3_v30L1C7F0pPqFKR53dojLSxmr2UnqW_DHSuJhkN765aAef3dscAReEsUJV1Jo7ksA90OuZv_gAC4OuMi_m2QvMcwoc3NIeHmtIyWaVEJ47yhWKq49a5HYF-s4o1SFJv71lfjX0WJDQ.23RO3eQVQgBJOvyZ2cZcqu8ZEqIPHNF4PFCA84u0fEg] pragma: [no-cache] - request-id: [8f9dde42-1cee-45cb-bf70-a7a0dda00530] + request-id: [4d91d29f-1caf-4b94-a9be-99bb96db7210] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -307,11 +319,12 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27%29 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27%29 response: body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'} headers: @@ -320,13 +333,13 @@ interactions: content-length: ['121'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:47 GMT'] - duration: ['730051'] + date: ['Mon, 26 Nov 2018 03:17:07 GMT'] + duration: ['298601'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [K6rldxMxky7aVh9vRPlXWYskRYxAISeuZjxkHfljrVA=] - ocp-aad-session-key: [fy3TNuKgJuYLE60_AVzo1FdVMsjPPZp658t_xgBwyiseGSHezUB_HFXCmM9Kw3tyrvymImiZ8xlgFS5ARencfUXyMhJ-zzDMsejp8BSEW6JxVO2tULQ-Jpl-LtgjRjkXPLQC-WQlt1rcC2NsjY9QMg.bd_OgaXf-yoT6DW4diDQJa1DEyY5yK4lR6B3ltBpzl8] + ocp-aad-diagnostics-server-name: [s2UwUVi+htM/n2YkhPwXRPeUZqg0DtftoAt5dzpH0b8=] + ocp-aad-session-key: [hD1VXDnHEPw963eON_DzOGCsE5CQg_4JKrFHqOHOMfELEoJPxWKS7hTMdrkAIiZfP2r7eV8EVfgMkdU3CFwfHUh9ebOeAJtrXTuiEQG9TtCGuEku0HcUGGnuS8-4nFSaZbUphnbn5t9tBOWRLQacJA.015QDel2GK6KpCoDpUYEwbbL6xgaM5vimJuryjpCRqU] pragma: [no-cache] - request-id: [85bb839f-5853-4eee-b13a-efcd1a374769] + request-id: [48b8e549-6b0e-493c-9488-f09659b6463c] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -340,30 +353,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2174'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:48 GMT'] - duration: ['376310'] + date: ['Mon, 26 Nov 2018 03:17:07 GMT'] + duration: ['556029'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [Rfijphx7ecKN3DhXco+oic4mwfgJcbBApkH8ISsM3TI=] - ocp-aad-session-key: [oahs8THHiaaMiKVQAFNpA9JyXtxxUKJQxv21rJ5564ejLcFd8z9Ou0qGWuc7nNyZj8KynY1MT8432QuWvEqnOSDadNWqv2qpr_jcYABIjD5hmfHN36_jQWEKEmk8PDKRqMF8oKdR6uGl-8lvHApIeA.Gjx3RL1tDXoe5DrX748-L2A0mnuvdnUH_d_6vCk4cBM] + ocp-aad-diagnostics-server-name: [n89Keg3phw3NGk9ObUqYNFrQ8gN7RlXt/txUE8fYons=] + ocp-aad-session-key: [erHkbazR43aCYpLnp7K6jJVDddXCLC4usMBWkkvKnsGYlK6ttv7YdfTukucJmZvbY2cAp_Q8UuFCb5UgyXhIelSsvWkR5js8EjSgxRDXw-cO8graeVpHBjDxMIE1X3gR2nNShxK5TrtfEYQ4VhgC3g.kBnJiWZL4lB1GOXcDYvPhYFguvUFH7OApYSQ4wIh5Kg] pragma: [no-cache] - request-id: [6d709a92-74e3-4fb0-afe5-d209fef950f4] + request-id: [8c6b94e9-1d4c-4b56-ae97-7cba7e039ff6] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -377,30 +391,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2127'] + content-length: ['2171'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:48 GMT'] - duration: ['368471'] + date: ['Mon, 26 Nov 2018 03:17:08 GMT'] + duration: ['1421365'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [FYbVpC3JeFowFri8itMBzmKvIAPYr8LlBbuqXkPHMlA=] - ocp-aad-session-key: [32Gs35F11wouo1tO46CNzecXlEgyBOD7O5aUQnnBuSSTbJq-Iu4D02fK8TorJw67Vf2vUrzIXMSA4S2yT20ATsE1QDSLRaR8Usu9ML-SQ--Zwg67GWhei_wjLilOJzNrdtT59fCDiNh_EYo_nKqjjQ.fckR0BF9KGeDgNlKrRPOOPASI1r_y3Jj-URhYhngqq8] + ocp-aad-diagnostics-server-name: [UasoFGN58uUDZzrA1RYY1/OBZjmM666H3oLwSIakuf0=] + ocp-aad-session-key: [CGkQLw28VkUZpzKcpaiUNho0DIbJ8Y4OmKd39cd1C0NGSJk3ueAZXlDmv8ENsR1fGJzj8O-KddmscVXw4iezGk-HWPvbbYbdP1xvdgSI3ck1vMApf4XB1MWuqGs8VfPc3s5zSy8cYGApIrGtNPg5-w.UkbNDzrRUNxOeg_oa9v4HArepfzU-FZqKuA0kotmnB8] pragma: [no-cache] - request-id: [aa5daad5-4f16-4abb-a94a-3cf738cd5724] + request-id: [2b2abbc2-5cdd-47f8-b4f5-8c909907ebe8] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -414,26 +429,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['347'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:48 GMT'] - duration: ['499102'] + date: ['Mon, 26 Nov 2018 03:17:07 GMT'] + duration: ['589473'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [nJFXIGamvjq0WNq3R+NL4/o8lLasHivlbg5vcxwnAHk=] - ocp-aad-session-key: [1jtVf6IzcADkkO5h264DUuxCvUFDTvr6kyf37hWQbg01CP_xkFOJBIP5YKIhKz_K7vfqkLxQ2Kc9x9LYqe1fdeiHJwp-eletX2HPTWE_Wd_HW0Wjzwi_96sXdFi5cH6s1gJetbxqO_PGautHdZY7Xw.WOFvEQ1trrmwcmqnyY4__FK-vUD7oSgQn26pcsV7nJQ] + ocp-aad-diagnostics-server-name: [pi9WNtEHQL/5J5R7YGiyzL38BqSp9WQ7lEmNjbCD2mg=] + ocp-aad-session-key: [GwPPhqXMeXSrOxq3NNdFjDR3hyyuVAy4KcZRlcESw2ljZcZH2jwVfDRGe3L1hrvv768XdIrmrtG1s2GCsHUrA_tsSNA4ILM3Ct8axb1sLlFEyd1Wtnt0hyp1LmewqEpnAXzZxyImGlhN5MaUaaKPOw.sGIJLvMfI2pP47gN1UKH-2qSreO2wUXZKAyoLhUMpag] pragma: [no-cache] - request-id: [fcf170e0-239b-43d9-94d4-bfbc0265ef5b] + request-id: [9f98b126-7999-4098-b37f-4db635734e46] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -441,35 +457,37 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"passwordCredentials": [{"customKeyIdentifier": null, "startDate": "2018-11-10T00:44:45.427028Z", - "endDate": "2019-11-10T00:44:45.427028Z", "keyId": "918ce74b-943a-4c28-94f3-f6c3dd036f0b"}, - {"keyId": "1e24371f-77c8-4827-b8e8-5dd34dc38b12", "startDate": "2018-11-10T00:44:49.065342Z", - "endDate": "2019-11-10T00:44:49.065342Z", "value": "verySecert123"}]}' + body: '{"passwordCredentials": [{"endDate": "2019-11-26T03:16:59.665363Z", "customKeyIdentifier": + "//5yAGIAYQBjAA==", "keyId": "011674bd-f4f5-4588-8296-1ad362010395", "startDate": + "2018-11-26T03:16:59.665363Z"}, {"endDate": "2019-11-26T03:17:08.256184Z", "customKeyIdentifier": + "//5uAGUAdwBDAHIAZQBkADEA", "value": "verySecert123", "keyId": "3175245b-72c0-4a9c-ad5b-0fe7d060aa88", + "startDate": "2018-11-26T03:17:08.256184Z"}]}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential reset] Connection: [keep-alive] - Content-Length: ['354'] + Content-Length: ['419'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [-n --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] dataserviceversion: [1.0;] - date: ['Sat, 10 Nov 2018 00:44:49 GMT'] - duration: ['4974958'] + date: ['Mon, 26 Nov 2018 03:17:09 GMT'] + duration: ['4737909'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo=] - ocp-aad-session-key: [YWH7D7DPu8Bk4KEOg-wKSXwSkZGgQQ5ZJssyBjma-HXTEhWUSBLN6LiEOIGhjWTEpjK8V0S3cX7AhdJKrreHBUQT5jzAXU0Tzoyvuo527lsZ5cVaKOebMg2JAA2XZNlc7U4LrMwxWAwRWWQr2WOB1A.lG4IsEYeBzknOQ7zGK05N9BLp_-AimM0_bUfykl-G8E] + ocp-aad-diagnostics-server-name: [IvZLzCWcIFkxniLh6wneapEsVoTEBBYbEdFPeHsJSbc=] + ocp-aad-session-key: [rDsoao4KgHCka69sR_TKcxofSKwEIM1pvdE2M5KmmaGfouc5wRjIZ0g-ZHWtm7CdJycXX79mh6BbMUJSj4rZr8VKjdmCZZ62EwS0D_P4V0gfh5fa_RcV1_WxZE-XmJEWaojKmoaRXBIwnlm1xFxVwQ.r5KD5rmxlwyALeB-5ujKGsKaSkad_GvmpFoOqfhRyzc] pragma: [no-cache] - request-id: [0ae31302-04d8-467a-be41-672e74addb32] + request-id: [af470a14-5df5-4d92-89d9-5a12de8ea6c2] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -484,30 +502,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:49 GMT'] - duration: ['393441'] + date: ['Mon, 26 Nov 2018 03:17:10 GMT'] + duration: ['559966'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [IVoo8J8Kwo97hZRmPKSXFMOLbXJ4bYdeLcbvUm0th84=] - ocp-aad-session-key: [OpAk4PtTzPED1ams7_Axi6UuFV6tKSk59JV3fFgibBuTwWc7gO4n85k3vHWlxlIt2Wn5Z0mR8hcApCZ4iPQ92ucsNZrLgW8Nxk_brkZiMTZQE3QchXpfc1cMBv6-t9uc0K-HixgglVAi-IWdaGpuCQ.lad1cJNagQcmVvfFdSGAiW9ud_tetFU389g8CYCxXek] + ocp-aad-diagnostics-server-name: [QcP18MNEK2rsGylMGJVNHi5HXYCSyZTWD43M/CKGhl4=] + ocp-aad-session-key: [az9GgLep4VKpBJW-ZfSMz2c-Av-yx6Hs0H3CvDiJkZ9MPGrEYrfxWjMVk_-IptxJgs8ztsQMk7YMPWG3MVTPV4sgzgw21_3spNjfltjLhIy0rjOZohUyNU3x7U0fA-PmVCAkXW9wJNY2UiMkZLcAGA.7dMZx039Cub8t9jo-9uDUhYYZ8NFwvQWrM0wVr8-LDY] pragma: [no-cache] - request-id: [ef2837e1-a931-40b6-b891-f0331000b91e] + request-id: [fa131c1c-8405-4d82-9917-968deb993de5] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -521,30 +541,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/d88b098f-bc21-4b61-8d4f-28832ae315c1?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/4bcfe84d-40de-47ce-a1e0-2466086a916a?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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1414'] + content-length: ['1419'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:50 GMT'] - duration: ['401992'] + date: ['Mon, 26 Nov 2018 03:17:12 GMT'] + duration: ['2118515'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [iBe0QwUqe2kxvM0RuOLDPalMes+SCbjDZc1pXmRLqq4=] - ocp-aad-session-key: [rif-o7g5Ow7Ya_Lq6kfF9HMInHacR7hRjO-I36lfBi12gCzRZFcdIIlzy-ns9K8sLUSYo3afyZkSpWAj6TAkWWSQN8IZGwzqh7WvEvhInPEi6RrfIj8MVgskL-6Kp_hEyoOyD-B51w0C4G3MW6mjjg.hZb-nwaKiaQ_fvt2m9khHkQ7DL10k6FCN5794oGAl0Y] + ocp-aad-diagnostics-server-name: [UasoFGN58uUDZzrA1RYY1/OBZjmM666H3oLwSIakuf0=] + ocp-aad-session-key: [v9I-U0kNiuTLjQSbiRjiuiQk6_KhdvAlzIhhW4i6hqjDYmfzWJfVEdlhWSEjVqDAsYpaBGCAPWa-2st13WKI7k9cnhWzRYCBteej16_XsRi-pWSNbrwBJvZ33hm85hH9p620NprA82b7A7AykHy3kQ.0FOv0W3_EuJbGn4F3fthHVg8x_KMVFWUJ2XKpHRfh8c] pragma: [no-cache] - request-id: [1d1fb878-1b5a-436b-81a4-2a1a9f2dfc69] + request-id: [b736188f-2931-4cf6-be8d-2e4e3822a8c6] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -558,30 +580,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2301'] + content-length: ['2367'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:50 GMT'] - duration: ['356355'] + date: ['Mon, 26 Nov 2018 03:17:13 GMT'] + duration: ['344545'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [IPBOae931bn+bJPBnT4uNOWiCrRKetFJ3jeGeHc0YHk=] - ocp-aad-session-key: [V1hilfIVfrVS97INHZjXAmPNCbdNYysDSQVWp_-7x6N6upGcTOF1IZc6h-yAcKmHY9r1poCGFijZn-oqogBh1lwKI-7Ac0bn5T2fkfdleaeuhikL3bah-W6Yj53k0hEYUwKG8Iav867NFN0BmD8WnQ.Lqsy1iurCricwzp1zLxW41XbiAzSjOYyAooQiHftV58] + ocp-aad-diagnostics-server-name: [Hmgcuy1hpGi6KCpCk4BrqM0RyCbBpwqDLCqIAEp//qg=] + ocp-aad-session-key: [ARE4tht4GW9ObdHJtQ2Xxc73Jy39c-0EwVVUNJnphNGBOFRR5Mehgvh2295AiFPANseXtsdZsT-kQO2uJXlKOR_7Otv_8KBWvqmZw7vSNEWutKb0ULjmYikTogeKyZH5oVK3RvBvhSGpK5TpeTKrCA.9v3t9GjyACOobjxXkAMcqraCgR_5ZbRnTu8U2-ou6m4] pragma: [no-cache] - request-id: [9a53f6d5-ada9-4e0f-914e-0638ca86e81a] + request-id: [17bac48a-589a-4e89-8fb0-55c80c2e5056] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -595,26 +618,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['504'] + content-length: ['540'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:50 GMT'] - duration: ['371726'] + date: ['Mon, 26 Nov 2018 03:17:13 GMT'] + duration: ['358891'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [uvPTCZ5YaY3P1obgmri12BXUydEZzky/GuuHPXDOJbo=] - ocp-aad-session-key: [EO1mNK4K0lEFh8VUnu_kLnNwarmHJDNvaB4ymRENEUVWq45-GoExcBLvHF8CuU4GshTVeBRIVh1ZIYI4TfKjFJ_HM3QJTgc3oW5noDOD2rvxcdIQaaIxWBSKxYyX4bCD2MGHZ0p6HBC1We-g-JiODQ.Hvs2PWqqfIklcJW2h-uWjhF4kzoiXJNnyPPYcqidstM] + ocp-aad-diagnostics-server-name: [hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE=] + ocp-aad-session-key: [OR_2ActLvcZ_t64OUFFyKW69eG_8CJXMDYbMgQin-9X-b-Wdhp4X6R282wHNn1ctIys2NM6qh9Xl6Q6YokBGO7Iair_3TdEyasluGS6PN916OmA_kVj9uzG_5Yp0cJNgAIVzRUfGSOnNP7IPVqHVhA.4IuIumYRbjVYBzRN8oYo33ESCyzZoJvIkEkppsfXbH8] pragma: [no-cache] - request-id: [e29c5c79-bc04-4696-9e2f-ee03904ae410] + request-id: [8b8974fc-5af8-4e1d-ba7a-251c16f396e6] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -628,30 +652,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:50 GMT'] - duration: ['469608'] + date: ['Mon, 26 Nov 2018 03:17:16 GMT'] + duration: ['372071'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [H0ECu2C3fj445zUSyWW2cfK9qFomYi0t8wudfuiYe+I=] - ocp-aad-session-key: [QSmKbz0ZQt9105vW7cFQABl42zuR5GZf5DQsUn7tEmMIT8c7pwU9f54A_9_sDASKUOv0z-C3SNaCbK4cm1_5jmE5Z-FMDkyQQVpFrQKZvDT1rZbFuDg53jUsOVY3QdTyYytPWu1o_AKJkLBQ8wW6bw.aiYsY3h5bBY4WVqPANfGkzkyH4Yg6_6zUlE_rK32D_s] + ocp-aad-diagnostics-server-name: [UMufI9eE72nrpFBWKVEDTxYznWVCEMFAVuYgj50b3xM=] + ocp-aad-session-key: [DLj_PtzdhNDPWLVC3bRkPVCXDjMkSEbD-C8cpmxksK67gwV9TVBoPnlRdrHDtLxtrmiH6Qc3ZFUo1KTLH8yFX__lfEscpU5HRB9pDlN8dYJDmZ66RAJR45P3P_yG3PL10RRkdZ1rgLK7B8YDJQcoyA.f4eFY1bjXkKjwMu2P2kibeUbMKGFTq3nL4JIVTy2hu8] pragma: [no-cache] - request-id: [7ed32271-5bfc-43c2-9222-af1a0669a5f8] + request-id: [f9fb43be-40bd-4876-893b-40ead48f9e87] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -665,30 +691,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/d88b098f-bc21-4b61-8d4f-28832ae315c1?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/4bcfe84d-40de-47ce-a1e0-2466086a916a?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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1414'] + content-length: ['1419'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:51 GMT'] - duration: ['385041'] + date: ['Mon, 26 Nov 2018 03:17:17 GMT'] + duration: ['412319'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [Sv8LAqxM3Xd8KdoykW0mGkYyWG5hzFClI07Ok7DI0I8=] - ocp-aad-session-key: [W2kxM61-lsOBnxy77hYC4U6Xu8e0pB3m7uAhyxWZW6o-0WpoJ2d-W3eCMRUEV6aDFs8Ek85BhOEIgg1VQ1YTNuDN8AsIenKFfKgKXeWqdQgaLHgXEnWCcDHS_9kFaYPcFaDRcb0h2KF749Z4v1ESdw.jUe9PVw7vWyxDWeO3-_MvXyUGAqdIX8R2OStaB54jwg] + ocp-aad-diagnostics-server-name: [CLBFhp12uVA5Nnh6MG2VC8aF6kYj6BwyK0Y6WAoeTzc=] + ocp-aad-session-key: [M_K9RYvQHjQurolMOc4DPJq05djU6iv8nJN1ihKlll1HCt8cQxPtTyVMmDJgB-C0gpgaZuNj_JkZ3Vc_5Dgm5QPXH8A02KGtuWpzSLF-Zw9osHwDerWHWZND8muulVKjqrCPs13xSKQVLgkxJb6exQ.TasnlPdqtactx0zWLlMYrkOCiJ0HA9hdKWo-XexNOyQ] pragma: [no-cache] - request-id: [fbdfa347-9d67-409c-8df7-d351d5b61f2f] + request-id: [ac69d626-0e2b-40c1-959c-2bded33923b8] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -702,30 +730,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2301'] + content-length: ['2367'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:51 GMT'] - duration: ['493333'] + date: ['Mon, 26 Nov 2018 03:17:18 GMT'] + duration: ['497803'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [6fg+R91TudKTiH8ukAn6DjKOEcAdu3Q+jEgq6nJAxfA=] - ocp-aad-session-key: [STD2oZowVkwg47cU8nwGSxP-153H47igZfLU3dT1E3rCwyk3xkrZ0tDUH3wBGhKCblvmmMp6Da-FHJJc72wM1b7B7yqDkjv4CmFnFIsPLbWB3XmCook_WGa0jFm8PlniYdtBjDM8Gn6AomMPJsaegQ.MwWOqHbKPmEm0QkhmFfMYztpPLaT_EieNIy6GH0ObSg] + ocp-aad-diagnostics-server-name: [DAEEhUUzhQ8pu+4OxvItbpuvqegmLWoSgzWL1kkCnyk=] + ocp-aad-session-key: [dDX0OZTCTfp-3npZ2TCPL2LmvZs2Vro5e-9yKIqhzV-wBITuvh8cG-mCpyIl1x98XzGQ7-OvRDeka6aVepVtFdUrvvei299y2btq727BdoUzhKPX8sO5UQ3chJSELPUV7pbfp115EAAmYDTBwDo1Eg.CVLJ3X66jtz-6zPNtYrNmoFgWKbQ_aBH_2bs0tDGH58] pragma: [no-cache] - request-id: [8a57cde2-e546-42fa-b47b-10c45e8e1392] + request-id: [35e91305-ac43-4c8a-a173-1a6293381ec4] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -739,26 +768,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:45.427028Z","keyId":"918ce74b-943a-4c28-94f3-f6c3dd036f0b","startDate":"2018-11-10T00:44:45.427028Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null},{"customKeyIdentifier":"//5yAGIAYQBjAA==","endDate":"2019-11-26T03:16:59.665363Z","keyId":"011674bd-f4f5-4588-8296-1ad362010395","startDate":"2018-11-26T03:16:59.665363Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['504'] + content-length: ['540'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:51 GMT'] - duration: ['364831'] + date: ['Mon, 26 Nov 2018 03:17:19 GMT'] + duration: ['593147'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [BQUIGmRRyeHSEXkgch2q1Q3MYXFFtGhoXfkp3cvu3XA=] - ocp-aad-session-key: [n-4xYoecjk6RUQgPH3gCvXxjpM49Wx9FSjqfBsMKZlBENcv8deB4-RnNzAd1YCH6Voyof6Yej8At3pn4bv2oss6-yyFL_ZxwSl_fiCmlfNtsRG4CD_NskpHY6uWdtRGzmm6Cag1wCNAAyzxBHrsAvg.ypflj63x7UM6DqJWyyVh6pKkyMqPrB67JCw_AdUrHvg] + ocp-aad-diagnostics-server-name: [hBrSXgYT6AiW34OnRqqllTrcBhIOEaEk4E+/a+pb/0s=] + ocp-aad-session-key: [zWlXXtfovkGWD9JnBiyStbX6HkQCJ8k-a8tXxejaXH0vBPn-p3BHgE6IpWA5geoEPRDKPEJyg3NyIfV78iMnDZZTnvEB23rYcjGvA-vm1MQOtAc1OPNmLwdf2ZHZCRT3bgzTVFeb3D83X4ZCajYDsQ.dh3soQvwAeRrabBd8nnBNcvV5bEnDqErl0bJPOiQofQ] pragma: [no-cache] - request-id: [b6d491de-dcbd-4590-a61f-47fa4771df46] + request-id: [073dd80e-abe7-402c-adaf-154c17725ad0] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -766,33 +796,35 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"value": [{"customKeyIdentifier": null, "startDate": "2018-11-10T00:44:49.065342Z", - "endDate": "2019-11-10T00:44:49.065342Z", "keyId": "1e24371f-77c8-4827-b8e8-5dd34dc38b12"}]}' + body: '{"value": [{"endDate": "2019-11-26T03:17:08.256184Z", "customKeyIdentifier": + "//5uAGUAdwBDAHIAZQBkADEA", "keyId": "3175245b-72c0-4a9c-ad5b-0fe7d060aa88", + "startDate": "2018-11-26T03:17:08.256184Z"}]}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential delete] Connection: [keep-alive] - Content-Length: ['177'] + Content-Length: ['199'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/passwordCredentials?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] dataserviceversion: [1.0;] - date: ['Sat, 10 Nov 2018 00:44:52 GMT'] - duration: ['3777646'] + date: ['Mon, 26 Nov 2018 03:17:19 GMT'] + duration: ['3539728'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [EditZjTBaEYCrvrHgtCp7VwlKGMxwmW6BfXNDuF3W+4=] - ocp-aad-session-key: [-NXEEMNnZ5v96Z8LvF42QmaX08hxDZb4_Lxj5P_A4f70GwWZPdYz7lUB0EDUVMPd6kOWE0Cou6OU2mfYflvFt3vKSV1BKX_vV2DxJ-0rGIi2IXowupEEAidgveh-K1CQRmOTLkAlRFNDf-Wn7fqGmQ.O1G0V-eYRiaqBq9Q-JhvpBvT5rX1bA15CikPn-a3Lno] + ocp-aad-diagnostics-server-name: [O4KpSJbi5/6YCC+tDQQlh4m8zzG+ja7BdgLs4Moxbzs=] + ocp-aad-session-key: [6QneUnIuXdKYPo8KTbpApJ-d8YKXxVOfGnpl1ZyrZLWTxdgVCbLTy6mYpI1R8d18IQT88ZTuuykb4-enwx1Kw9J8nHc5tvxnlNP-DATnyDGeR0NsoUS_uayctRSQYIzqX-xzpoblPdoHJS_9bYXGXQ.TVQRyN2lV7eftAo_ENyip9-wVuwy2dw9FO6cTCWnA5E] pragma: [no-cache] - request-id: [f8941030-01a6-41eb-b5cc-d67f1b9130d9] + request-id: [929b65c7-fe6b-4e11-a34d-bf6fc0db9dc1] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -807,30 +839,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:52 GMT'] - duration: ['668122'] + date: ['Mon, 26 Nov 2018 03:17:21 GMT'] + duration: ['349030'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [BXRgh3eu6YIFumaSZy7lFEXIwtoZR+AXCAi0P8igTHU=] - ocp-aad-session-key: [gKqSnYHr9VPskC3HlOIGgBsruCixxAT2duRqvq5lT8RL-bwvwoDZ1sBm3rxwn72jODfnf7g0JzGEtIPgTDsbZTHOzynFmBJdl3O9hEN9te33nqBy969TLlnqBzfHsqNDobk2IY9-0WvvZiTuFi1hfA.MxqxH3BdNImu4Ke1w8jeXT5_OREF7Pckz3TLPkgfg90] + ocp-aad-diagnostics-server-name: [uCCQbpgVHNC8rue1lL9wVVx/oAWeG8jNKc51+E8x6H4=] + ocp-aad-session-key: [wftKRJ_I8pqw0tn1Hyk5l5wRZdee3LZRWaYBIHcRdFbjms76eV5c9X2b7p7sPSVjAS7360vtjno047freLL0h8SF29gsRD6g8j3KVM91fGxkxdetUmMbs1HQ6a6aMTMKeO7U4LwuE3yNTaZ3IBdS6g.Z822yf9nF6HI6so7bu2E6x7bjw154FAJMot3fgaOoMM] pragma: [no-cache] - request-id: [54fee4d5-8eff-41b2-b275-bcc6f41a1dd8] + request-id: [737ecaad-118c-440c-a4de-57ad6fcc4b18] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -844,30 +878,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/d88b098f-bc21-4b61-8d4f-28832ae315c1?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/4bcfe84d-40de-47ce-a1e0-2466086a916a?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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1414'] + content-length: ['1419'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:52 GMT'] - duration: ['432043'] + date: ['Mon, 26 Nov 2018 03:17:21 GMT'] + duration: ['541004'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [FYbVpC3JeFowFri8itMBzmKvIAPYr8LlBbuqXkPHMlA=] - ocp-aad-session-key: [JsG0TqQe1iE_-70cIg4BbDaDeKF0xDduuonsTlSihQJRYnqBvQZ6UhxZXxjoxoUlj0TyxCgWKD3WM0qwkpYaWKd1ShLaEfiLkHih6FsxAijLuM53vXx8TQNtjwyQ1pFw5zZ_o7wFyLZCf51txVT4Iw.m86DwUoa_OJz02UflLalqOu9OCqG-efq_sKZVrq7SRM] + ocp-aad-diagnostics-server-name: [qbLQHeemSYnF6GFzxWPxyco92r/HwDdCBwNHurdokdI=] + ocp-aad-session-key: [1cQSiIHEmdwXnBNZjH0xoNXrkVhyCpEs0ItNTyNVXm0b8Fms_LbqwZlihz02FraWZYwJtfSSKCwbm2PEDtSlDmIWDiRjTv6B7qtOMyUnINw7TizOEP5LgLbwPOAS2M3gYrJf5MKtV6NAZAA6x-rHug.MkFk8tsPnYEgbRpLRzfX5yNID01HAqIJxxks2lGow7k] pragma: [no-cache] - request-id: [fa15ed5e-6ade-4a0f-a981-ab8a82cd6d58] + request-id: [1ed0f3c2-4adc-42a4-92ad-6e7eddf460e1] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -881,30 +917,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:53 GMT'] - duration: ['582687'] + date: ['Mon, 26 Nov 2018 03:17:22 GMT'] + duration: ['349159'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [UOr32UtAMU+Eq0/F3AdEK7cYLW38EohupmMJWMjvI+Q=] - ocp-aad-session-key: [phbmZviwcu7Qu4ET3vPKWRUD9z5BET_uZVdR7Wu2bNH8-vGCCcQkNWCrYzITh8x5i71yUtLR4idjcMt3jM-ZCgo9ezccFaklJX1z5gNN5qaOggUsMKfoXtMrxCy4Udbtn40Un04XoRzMi-Tk_Hx7GQ.8bdU69KWxFGdebX8wN0WOunBePzimN_Xmbhsxso8cHA] + ocp-aad-diagnostics-server-name: [WWe9QgsvUicjoyAoKn+dEp/jx1mlcMwTYk2lly59ESw=] + ocp-aad-session-key: [Z_NzAKCwdqodoOtDzO_8Hjf40Q3Y-jbKwJuJBfWmSj-aVYDl5CYxxxvwchdxmhWYut4PEKY8kEOb-lzMHaDLHGupN5vbm-DJONhiLyRnuK2Re0cY3QtUhdx_KUunhGUBl-gigL8QPpkcOZHfdmWcng.LNypRxvIUZ7NUBbqxZa02PsTCRxbCKliuyn8ykUDje4] pragma: [no-cache] - request-id: [ace04e77-e190-443f-bf5f-e381cd31cd02] + request-id: [68902f9c-387d-4d8e-8d8c-826a8028fabd] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -918,26 +955,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad sp credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['355'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:53 GMT'] - duration: ['464445'] + date: ['Mon, 26 Nov 2018 03:17:23 GMT'] + duration: ['358779'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [rJNezfCzZKXwEEXnlcl+KNo0/T/KGtrEY5MYKDNrK/Q=] - ocp-aad-session-key: [SfURQzTrgc9-A7ywm3QoIjpmxIgqMHRQie8VdWrIIPLq0BNG7AoKh4zRusBSBGE31LMgiXaemqKbanoS7MJIU4mBKWOFtKoC6ujAg4RdbmA6tOkvs5-L6Tv4UDmKmT9xe4ekVmEo9XXamuNjvZUl-Q.UfwpEMfxWR20O-z3NBMNYzbsgXJNuKK9RkoF-Hg0KGc] + ocp-aad-diagnostics-server-name: [IENUBJawjVCNeOFfPW1GFeJcp26vWA0p4gBL1NaxNik=] + ocp-aad-session-key: [RxlLy-Daf9Hg3LqhU-SfvI904Cg36ASL7zeWeG6LHuWNuccz4II7OSf6IHDws2XQzsqeoBMqd2fBPbP0GUyIDVEn9Wb6jrhDA7PC5JLBGvhQzHTHMN0UlqSf871V1iWOsKtZO7OHBZEVOkf1ZCSwpg.8vutZ93cs6-u3fDae3N8y6VvxJ83SUQvU6eyQXvJjMI] pragma: [no-cache] - request-id: [fc95ef3a-46a9-40e3-b99e-ced9ea280e17] + request-id: [cb9586fd-bc14-40bc-95bd-156537a96fc2] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -951,30 +989,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:54 GMT'] - duration: ['376221'] + date: ['Mon, 26 Nov 2018 03:17:25 GMT'] + duration: ['359283'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [pi9WNtEHQL/5J5R7YGiyzL38BqSp9WQ7lEmNjbCD2mg=] - ocp-aad-session-key: [DB0-SyaP52kEKwuHbYo2ZX-9fluwp78iJFhiRsGJWJoaKdWXe8g8-i252tBbiekf4ZaKl4ByRCuMmF3pUh6sWn0nV6r2BY5hqW2LYNTJoMfNKMrnyyoK3Bp2I62tbWEM49Qd7Ds6Y_Y3OHgmbvFOcQ.BY3KVmjJt2n7EFdbOSKXuY-W_s6LwdFDudEPXdICuss] + ocp-aad-diagnostics-server-name: [XOs9gGfyH50gS8B3zPgeXNS3pfhaVVLdmqEFzm9FoHE=] + ocp-aad-session-key: [543oR4SsQu1SgdvsUVE9UFU-5UTErmhkcBlnnnRLUkp693eVLWQwdsGE7nj9XGWb_WkxVQ4tC-82jCgjrl7aL80ZzXdMvJrR74DYyhBrqyiN3EUci3GtvwKy92WFspfvXm7JL-DrLxdVtk7PQ8WNbQ.eqykV6LHkz_j47JHSkis__LCpStXJt2RYcueh2de-o8] pragma: [no-cache] - request-id: [0829c0b3-6d5a-481d-b5bc-e0167abc8060] + request-id: [40a8ce4a-06f0-4498-8b17-189534814a5c] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -988,26 +1027,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['355'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:53 GMT'] - duration: ['359710'] + date: ['Mon, 26 Nov 2018 03:17:25 GMT'] + duration: ['394960'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [2gCJyEullf37VKgfupb1dpGiYlGUN8HjqZHuUwtlts8=] - ocp-aad-session-key: [g3Idl-TCiBeACSbJZxes-aMxnywW9nfrlFvGerwyzLrx5RS_tmaExXhtBzt4LiVs0Ej4a_Covp-kcB7eh8BDcL-IN-6tcOeZpzXG3DNVw6Ct_-qDTpkIKMRLNa3vFXhK_jkgHfhRdvCYWYvxbREtBw.39bfcYGsIccEs2LagwZFYz9Z_sbtQd9hMaqVq1zQnmQ] + ocp-aad-diagnostics-server-name: [fQLJJo2NQKA1MEYhE9K05hCw7w6tp5qp0L6SHCVm0xw=] + ocp-aad-session-key: [-vD6KGH4V4ppW2qiwH4YWA2hyD_Odjp5NAyHXy2voCv0Qqk6oa0yhq80dv9DuUQC_SnrNqVAbV0YqNJ_qj-0VjrHvLdVuBKsOE4ijJ1Ev_l0UELNzZ8BC7j7BgKiPgJFzYvZF6dQIQLUM2FxKFSY6w.3oTnvU1HWDewFC_rSDhqnaWQ5kPMdK2wstJCLqrJHuk] pragma: [no-cache] - request-id: [c16c95f6-530c-480b-899b-d9e4887eef77] + request-id: [3220c250-f429-4eb2-bb1c-eff9ba7b2779] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1021,30 +1061,32 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6&$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 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":"d88b098f-bc21-4b61-8d4f-28832ae315c1","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"565c2e77-5648-4a12-8458-4ec8df513abe","appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4bcfe84d-40de-47ce-a1e0-2466086a916a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli-app-000001","appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","appOwnerTenantId":"26833e2e-ee80-4a9d-b24c-ffe135b7ff87","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-app-000001","errorUrl":null,"homepage":"https://cli-app-000001","keyCredentials":[],"logoutUrl":null,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access cli-app-000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - cli-app-000001","id":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","565c2e77-5648-4a12-8458-4ec8df513abe"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} + cli-app-000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredTokenSigningKeyThumbprint":null,"publisherName":"Default + Directory","replyUrls":[],"samlMetadataUrl":null,"servicePrincipalNames":["http://cli-app-000001","9a0892fc-a72f-4e64-8499-31e813f205f5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['1417'] + content-length: ['1422'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:54 GMT'] - duration: ['552227'] + date: ['Mon, 26 Nov 2018 03:17:26 GMT'] + duration: ['2259885'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [7G98t5jXPmdc39u36x9DSb0cC/ny+jmdWuhB0dVG1QM=] - ocp-aad-session-key: [VzRTcIAZfNRpXB0KZnCicrlGaA-ZKXfNWTGylaJffan5Q-GLrivkvzDUudKcFsRvClnFNzH5Ghf8a6Z9VdtMRMpYqwLMEo1dLTeZrYJ7i46QZ6WmaOVmmfI4ODrDmgMPSz8JnULljXxm-K4PsZBTYA.u_u5HKnFGp67eRUCnneAXhoCPje-ieTakuigqI0WYMg] + ocp-aad-diagnostics-server-name: [BOfrHh0cOU6eA5cLUnIcIwA0YcBNrjonhGGrSYvBTv4=] + ocp-aad-session-key: [Z4Oa3OosWXWYYD4J_Qt9Y-Qkfwf2tdIfpU6aA0fTvaEVwP7n1Qf0X8IlMHidmGhkHqoUwjfOe19X432pldJwbTD-alXahqESBc-h87mWxNi-TBQkFZsdTEaBiFdTtvUgxjcL_SFKWsKaz93Qv7ZBXQ.qK_KBv7RZhMqMdbx4igxQp2Lr3eO_WyF4534EWdgTrk] pragma: [no-cache] - request-id: [7c1bfc6f-9cf8-4013-8179-031a38999e9c] + request-id: [13580682-ae9d-4ebb-92b0-275eac015769] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1058,11 +1100,12 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27%29 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27%29 response: body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'} headers: @@ -1071,13 +1114,13 @@ interactions: content-length: ['121'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:55 GMT'] - duration: ['401287'] + date: ['Mon, 26 Nov 2018 03:17:27 GMT'] + duration: ['288918'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [hXM0y5tf4jtAu0XM9IyMZVs+30ozRFf/FDYUTguUD7g=] - ocp-aad-session-key: [P1qPfz0gSeRKzQP-Bc6PfpVdVcSwchWl1RF0rBE5SZTGGnwyss3oyhwLRZKrw5tZhKxUCsasBX7OUTvc_MXvk2y9j-oKDUlJfITGVOOl72XQv5zLOOrtUcK-dzhbF7S0CEP6o_ubsC0HsKyudVJKdA.-gx9p5Vz6Ebzhs5RpOAE66UTihxKVg3zMOWnUWEsaVg] + ocp-aad-diagnostics-server-name: [eHUy9xL/t2YPMeNAb8K3eJdZ70TbtfpQN57mnPQmQKs=] + ocp-aad-session-key: [knQbJUxexNgrGLemU3ft__UU7OpjGJbq_rMc3Xuanq90K0obxwFGvLndGlqeKWTuSpXwXAjcONwF5Q2A55_Eo0eHFYtymIduO4mes0nAPbHxNYALtJTUmZnrzlchnMn_UdXQMhyegq2zUXoqz2N_pQ.7_ImKwyoF8jcdju_pjc27eoymX6cOalEyHOd7AKhK_8] pragma: [no-cache] - request-id: [a7054132-f693-4131-acd7-ae644e958cac] + request-id: [c18bf92b-3e4b-4471-9be5-0e8cca88a6ec] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1091,30 +1134,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:54 GMT'] - duration: ['424881'] + date: ['Mon, 26 Nov 2018 03:17:27 GMT'] + duration: ['399467'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [hXM0y5tf4jtAu0XM9IyMZVs+30ozRFf/FDYUTguUD7g=] - ocp-aad-session-key: [6R3NaCwF-Yan9SYOXMlR3QXDSGA6P7JCUOfvWfYgfA1SKE4R1WZP7CVn9PuoT54dByDI0jQwz98NwADE-I8De_RPRUJuvp-BVWAZmCdDr_O_vIXCjnAMChxxsvkAGSFyx2FuJ7rXCKe7ULR5nhAmdw.mi90w1iU9cDcadC3SljXpkHiBosHooPrkzv2qlzLj1w] + ocp-aad-diagnostics-server-name: [NorBiSXbBacugIOc9PINP1SvB49TAti3iq1gEzH+f90=] + ocp-aad-session-key: [w9UHWxSf6ZvzSN68yAAL4dfkcDdhurdhKIyJI9gQoYu_lLiujjZbuDvoyfsyNvoxMtLE6zzDcOMQNTs9pKlB4t1qKBn6-qS6u4H3llXOPDGp7GVvt0WerRe3PYjEqZq1Pgyxx9zCvnt4CxtrfGsoOg.K0KAeRhrwHILXPln-T9jXBtNhVTHlUYTePROci47aco] pragma: [no-cache] - request-id: [f25f32de-79b5-48c8-bd69-d4e984ef5db0] + request-id: [b47916af-8751-4735-8e27-a3a5055601c3] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1128,30 +1172,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2127'] + content-length: ['2179'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:55 GMT'] - duration: ['650965'] + date: ['Mon, 26 Nov 2018 03:17:28 GMT'] + duration: ['613688'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [raR8JNajDTfwSzq60owihwvzZvfOxnwzwr6uWdDMZbM=] - ocp-aad-session-key: [BV08T37NTI0--gBnb08vJyrV4wkacL_-L10iKot0D49rbPdgmdI9EFzFH760NoF21svBqH4kwhBpptm93Ptmp8erUrRW7ACUuVWyg4lHr29yIbZNmqqh7WryGdWL0KNn35usRryHk3uKEfOAaAJjFg.OIwM0jX4IqEtsU2okaL4CPtoUzJGdGqqISFf4s4-PiA] + ocp-aad-diagnostics-server-name: [WiG/DPKn3noJELxY9/Bmask7Igt00cCcbhfOcH/k7Qo=] + ocp-aad-session-key: [DDFJVmXAkGBWPhHMAsF1RzbTVA8jz6H8d4Lrh3xEd0sZ47tIC97CzN9Cs7KzsPPZh3tlIzZ75JFLsGRc92sjYUGZ58_sTMzhqQ6TzcEUQ2xCGfcYj4L2P2KVhCjWUO-WPhFvRlqwQ_nck-4TBR7a6w.XFk3V7yU06XTEjPnIl1QIYQo-5MWQ1N5kp7sM5tOM3M] pragma: [no-cache] - request-id: [63f7be95-be46-453f-a4a5-ffd73f2fbb9d] + request-id: [5a832a5f-87ee-41bc-8424-26f3ecaf2de1] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1165,26 +1210,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['355'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:55 GMT'] - duration: ['564544'] + date: ['Mon, 26 Nov 2018 03:17:29 GMT'] + duration: ['340990'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [wIQemZ+5vqMn85aXsgJ+yzAwtRuiwLPflul5H4QC6Xs=] - ocp-aad-session-key: [V4fe3z9FGHgrUkKzruu5jyBXFOB_v_uZRSVVAqqsdNWMhYp70BpCI3D-oPEx540_lNrgWlUYcXkq3hFSZtXmTwhZXHDoz4U79Sj144SngkedSS61ZpXjJLQ4ILPAsiZAc10hApvLq7uXj_PCTziu3w.NoFUdoKLM3MT-nZsgZeIGTztOIDX09bfPu-4CGgH5zI] + ocp-aad-diagnostics-server-name: [s2UwUVi+htM/n2YkhPwXRPeUZqg0DtftoAt5dzpH0b8=] + ocp-aad-session-key: [EyY2DnpNr6RPNUDpgHBUJCphjFw7QTeOkg4Ex57Wb33246USuEJlHU9L1Qzf7_HTZ4PWIl2v60tTmh-f6zu3STZk0DXfhjFOZK3BPXM7Vsmv1Lv9Wmk4rQg2vOI11SJ8aHQtJdBdbOtrRwkK-nSOfw.ysWpXVrN-iJsZaTFYN2SYPRcfIoX-IL6heB-knLKw8Y] pragma: [no-cache] - request-id: [68e2783a-ec2c-4dac-8514-26a331a80234] + request-id: [d7e70065-6dd9-4eab-8521-8a1c8220e6ad] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1192,35 +1238,37 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"passwordCredentials": [{"customKeyIdentifier": null, "startDate": "2018-11-10T00:44:49.065342Z", - "endDate": "2019-11-10T00:44:49.065342Z", "keyId": "1e24371f-77c8-4827-b8e8-5dd34dc38b12"}, - {"keyId": "760fb81b-7135-4440-94ec-37dfd440b85f", "startDate": "2018-11-10T00:44:56.106994Z", - "endDate": "2019-11-10T00:44:56.106994Z", "value": "verySecert123"}]}' + body: '{"passwordCredentials": [{"endDate": "2019-11-26T03:17:08.256184Z", "customKeyIdentifier": + "//5uAGUAdwBDAHIAZQBkADEA", "keyId": "3175245b-72c0-4a9c-ad5b-0fe7d060aa88", + "startDate": "2018-11-26T03:17:08.256184Z"}, {"endDate": "2019-11-26T03:17:28.781865Z", + "customKeyIdentifier": "//5uAGUAdwBDAHIAZQBkADIA", "value": "verySecert123", + "keyId": "b3756d13-fcc4-4eac-9283-8ae98ee2661b", "startDate": "2018-11-26T03:17:28.781865Z"}]}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential reset] Connection: [keep-alive] - Content-Length: ['354'] + Content-Length: ['427'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --password --append --credential-description] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] dataserviceversion: [1.0;] - date: ['Sat, 10 Nov 2018 00:44:56 GMT'] - duration: ['4758587'] + date: ['Mon, 26 Nov 2018 03:17:29 GMT'] + duration: ['4787595'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [+Hn5o028tX60qRbexrbZTHdK0iF10fFEmTWd+2I+zlY=] - ocp-aad-session-key: [aH1dTZBPo8zAI0IiudbWbu0ZG5xi4PmJ9W5TsNWgHbmONtzzLEga9ZiSz4Xc-BJSgJkZSkLuSYLzka1IG7IU_IDzkbEz00y_pzh9gzaSFHES5fQgUK2UxBQQmcscewFRixYtX9crNTcJgsOHE5heww.uCJyWUpMzpD6tCBaqkYowsT27ctLbLUQ4MqyVazgres] + ocp-aad-diagnostics-server-name: [EvOfLP9PQAD26fpwk0dE/RFcscWviL1fU6DjjzXB7dc=] + ocp-aad-session-key: [EKakCT30o0OYpYtVCi5k45Doi1JJfQvRgEYfuQFb3xLV8ypd45-iWx4BAj1yp2ZMa-LyvDzxqtTqcTIJmfTxzDyAQYAeeXjc4Acg_UDFhWqpf5arhssdgy_rrRgl1_AmWcLc7RSgv246CLmHCi-ugA.NPiKMwmieN0Zw8M3w0OYyowWHLaP-buFt19aNrwMF0A] pragma: [no-cache] - request-id: [38fb4bc5-3781-4772-b320-54e35157bf64] + request-id: [04918aae-b667-462a-9c01-2c5c68326dc9] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1235,30 +1283,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2301'] + content-length: ['2375'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:57 GMT'] - duration: ['540435'] + date: ['Mon, 26 Nov 2018 03:17:31 GMT'] + duration: ['359780'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [27ZEr0h18RCw5oe/AROzipmgItY/LYG5YIwwA5EOEKk=] - ocp-aad-session-key: [MoWFp-vgCD5obfpEqnBgicKk9JfhU7eC6_scslsFZg2tmO73yGikulSxuDRDc59rGwhbbtAaa1nKbkSKU75X_KwGeG_2tz4yjkAANjNmug-zY-oO5cIS_P8zlWpx1YAIEIRPHEk6vt3CxyIVqTiB6Q.vTXKcm4ZgiwysvhxzOCzFZ8unsPbFWq4RuzvZZQcKOU] + ocp-aad-diagnostics-server-name: [raR8JNajDTfwSzq60owihwvzZvfOxnwzwr6uWdDMZbM=] + ocp-aad-session-key: [7d-Gsv6aTAbOyZT2ay4MdW8ftmPVbF2jswKas_RlI1nNxn1tLyb1OuZ-NrfqJ51BIiQmuap0wpSo-cLiuFx2dil3fsxCgCvX7mYfEcIPRqoMoINZmU7oJ66zFlGknhkCrlY0s92buUPslTHyFIsaoA.V-a_itR8zApm-NvyNTmjMK-a5qHMEJshgW0cGuNHnck] pragma: [no-cache] - request-id: [b26a3b98-e554-42a7-b77e-e8747bbcd012] + request-id: [3c79b2ba-9e67-49e8-b3e7-234cb5b7bad7] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1272,26 +1321,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['504'] + content-length: ['548'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:57 GMT'] - duration: ['384379'] + date: ['Mon, 26 Nov 2018 03:17:31 GMT'] + duration: ['343740'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [EN3UzqyyMepVHkxrA0a3YivmCuo/FhGR5X1H+l7w28c=] - ocp-aad-session-key: [U3XdwM58xNekGzb-ZwQW60dK9nSsne_y_YyCeRLOKlXFnOfvW8NxIqeVUsN9ouXGx5MYiy73t8QO4otNlrOqR9fhjBP5wsbtHBlPeEb0AbUKsEl6I_c8EmpOFhx9anP2XUJxTgPtGcbN1JRgbfBc5Q.TDZKBcE95XUDzqXen_GW6tDie-2YUjg11BtXi8sRrOE] + ocp-aad-diagnostics-server-name: [oNrsfdz3Fhte7wfqy+uUhdb2Yij4mN6MnViek/b/vco=] + ocp-aad-session-key: [7JJIJR1oJ66STXaufETNCQbbRvmBZILgspK0KZsUaZYwShgpBgkqi-nzkJFW3pm2Y0RRlJ5bX2oekOecc5_MUfuJAZUiZKq_G8ZQO5izVNHp4C0I-tZZg0AN5wNzM3w4Iz8BRwQZbRDiwiHsaQucSQ.xDJxIesGoh8l9zuaQ3tGpvK3D0TkklvC5jXRJmO5Ljg] pragma: [no-cache] - request-id: [643eba4f-9aa9-4c5a-94aa-211b67b9647f] + request-id: [24cb53cc-8515-4a49-9038-54e876d43886] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1305,30 +1355,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2301'] + content-length: ['2375'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:57 GMT'] - duration: ['433234'] + date: ['Mon, 26 Nov 2018 03:17:33 GMT'] + duration: ['405060'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [HsKElesTxiLgdPMB0FbOxcZnfgWfQ52qrxu3V/VUL9s=] - ocp-aad-session-key: [LAI2L0QhUXul6gsP3Xm2_fGtENpWT0DA3MDU6rSZF-V64ex6G0nvUgd885LQtyMQZBVkf1dU4MUhRJFc7mJvDvSbuYv2APJfJWJSVSnLthMAAGKkGYCqQPz8a6wvn7as1sDiL15XMmwDwr_JDHfipg.pWYnl7bBR-FB3enBJseClzu6DGTSgofE8WAT9cRP7vs] + ocp-aad-diagnostics-server-name: [pi9WNtEHQL/5J5R7YGiyzL38BqSp9WQ7lEmNjbCD2mg=] + ocp-aad-session-key: [8_cXrlAT7sF9xblE47_GBuP58E7fvx1-3Q0zg2RoVeBuzX_I5ZGfwswFtYPLbtv8KxBCEjszlwK5c-S7UqD-Jfh0hj7bnbVo0o1BWwo4bgPbbGguf8766OIbVco9CEfVJ72d3D1AM7JM--Zgzo70lA.ZDvP_tfXNOkWswa5z2VAJ1q-6Kl9Lm1LVAEwXrefJYE] pragma: [no-cache] - request-id: [042bc996-dbf9-4ad6-b132-98a7e8ddf15d] + request-id: [f5f79a0f-d880-457e-9b53-0200771d3f15] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1342,26 +1393,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null},{"customKeyIdentifier":null,"endDate":"2019-11-10T00:44:49.065342Z","keyId":"1e24371f-77c8-4827-b8e8-5dd34dc38b12","startDate":"2018-11-10T00:44:49.065342Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null},{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADEA","endDate":"2019-11-26T03:17:08.256184Z","keyId":"3175245b-72c0-4a9c-ad5b-0fe7d060aa88","startDate":"2018-11-26T03:17:08.256184Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['504'] + content-length: ['548'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:58 GMT'] - duration: ['432554'] + date: ['Mon, 26 Nov 2018 03:17:33 GMT'] + duration: ['996203'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [8FSoKn5C+xKnzMxVB24u9W0B3o/Ls6Mt3pri2fVg6OA=] - ocp-aad-session-key: [QnWWmA11qPky6YEH21qn63z7JlFYVe8rDE5cOMbyEoYcrRH4J19d_EGfwHhrtCgVWpy8A3DVHUyNXHkG5dWidO26pAHJwSrZC3NS3TZMLFmKPPOQMj2aGGyqw4E98VpdYtZyKIFvlvVZSCVq4p-3Bw.OeJYpOqImMXH1lXOWWF9YI3YbOodv97SQ8eRFl0XklY] + ocp-aad-diagnostics-server-name: [IvZLzCWcIFkxniLh6wneapEsVoTEBBYbEdFPeHsJSbc=] + ocp-aad-session-key: [RnXJZnyHbB25-0jqG3-Y1dbPhdEiaQE4oZJP7FOjPLqjfo_eEn1C6CBpkY6cv97dAN3TLh5JXQCZHH17L6wjpoiQKWP49CtTK-o3cHiNyr9tJ1K-12P3a997bpyOuHK16ZG1aq1kZht0LAH_i5NoMw.g6K-dylfbTnaQ_qOW3TH-rOgbRNso9UO3SEymtY2GA4] pragma: [no-cache] - request-id: [95452d5d-c79b-459a-9f11-67dbe157c74a] + request-id: [793a9be8-5f2e-4829-944a-efd53c1e5cdb] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1369,33 +1421,35 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: '{"value": [{"customKeyIdentifier": null, "startDate": "2018-11-10T00:44:56.106994Z", - "endDate": "2019-11-10T00:44:56.106994Z", "keyId": "760fb81b-7135-4440-94ec-37dfd440b85f"}]}' + body: '{"value": [{"endDate": "2019-11-26T03:17:28.781865Z", "customKeyIdentifier": + "//5uAGUAdwBDAHIAZQBkADIA", "keyId": "b3756d13-fcc4-4eac-9283-8ae98ee2661b", + "startDate": "2018-11-26T03:17:28.781865Z"}]}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential delete] Connection: [keep-alive] - Content-Length: ['177'] + Content-Length: ['199'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --key-id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/passwordCredentials?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] dataserviceversion: [1.0;] - date: ['Sat, 10 Nov 2018 00:44:58 GMT'] - duration: ['4301524'] + date: ['Mon, 26 Nov 2018 03:17:34 GMT'] + duration: ['4465045'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [NecIdAbtcl2G5DavAD0ay+NyJ0bZ8m4qvkKAOpQmV0w=] - ocp-aad-session-key: [zpO-RCeKtbDYNFMjeudZ1tLIcONa1fx4ZumAtbmfsgTgTt7Dd_oSmcxYRDKslQ41I2ABfXM-N5oYxyEZxkCr-uRlkUbGXLB_otBBPGGDajuNcfiQC6gJJSgpJFIPlFkHjXfSVNCCaDghsrKei0M2KA.uPXnPK__JIS8PcbR6JCWw9zeruwYc53yyas2hL8EAWE] + ocp-aad-diagnostics-server-name: [c+jbw+ZBrEliCN+SCvWixDretq0U48+gk/t2P/iP65E=] + ocp-aad-session-key: [DjhtLUPwfN3Kd1RIckFV_LBT7OinhTLqQymfNc4KaS92VuWW956GB8Umt8rON82sAQhmIHgM88Rl9usHqWrM2lAqh-DkYSNNFa1o9BKbK4J2MseFhnD4kKGpnp5bX_15eo2M691LWc7PsFt8tpJApw.a9t5lLS_JqdPq2jwfhIsAirr5MFePsCWgTtqY4ZrlCw] pragma: [no-cache] - request-id: [bd848b81-f3f8-41d2-9016-8ade73a400ed] + request-id: [6b24b17d-75a6-48ae-b6c1-51070472cc78] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1410,30 +1464,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:59 GMT'] - duration: ['377495'] + date: ['Mon, 26 Nov 2018 03:17:34 GMT'] + duration: ['365708'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [r0o8Zfv+/EsfSzvffV1oL1MCccQ68EumyGGwG7/SNv8=] - ocp-aad-session-key: [XO6fXX8k0Wu-mvuh6uLM935hCkEITPHK5fDmdoPtUjHpEdPaOVwK8_P0aENK44xu8loJ7UMOk2Xq9PZ-UnkQT5O4epHhpcNVa5I5m_kyfkbPD9sd6ApP1xa00FyqvtIgYsaQfDZjWHu20gANUXSfDQ.N32zcbpFuPyX_TAOlXzIKmTE_UBqcX0wMsfiq0_IOaw] + ocp-aad-diagnostics-server-name: [XC37a6rlJsCeGLMfJenTNZI4+ije7D/luiwxI9jCogI=] + ocp-aad-session-key: [t7IMmDMfkvGR6vXjBcAW6DO-tYxniXeQZ59Md4Gy7DLZl7TmtVBK9r--otjqjwV8F_hxP511CanMhIlwq37uQtLaiFIwVcL_nJg5CKBU0oF8a-OMhtIjcnXwhdzSxW1dBXPWlnMze8wl5HDNnJQozQ.nnNk0b1xdfA8ec-cp4yC8lMoRWYoEfC2rwcb4GvASU4] pragma: [no-cache] - request-id: [1e1159c2-d004-45d1-b262-e6ea576344dc] + request-id: [e3252a1f-c003-4336-8fea-f9f5137b1070] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1447,26 +1502,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app credential list] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581/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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}]}'} + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":"//5uAGUAdwBDAHIAZQBkADIA","endDate":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['333'] + content-length: ['355'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:59 GMT'] - duration: ['510696'] + date: ['Mon, 26 Nov 2018 03:17:35 GMT'] + duration: ['332851'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [BaUpzbcpe8CsfbLiSVe623GjwTzlV5c+gfKgkBtBCJY=] - ocp-aad-session-key: [BJXM-lKBvYjm3sI9vByNIPenT1qr0V3WE0AXaDW3PpWq4nElyYHYs8JpoFBlt72WrEo47iZuMIjpNf83gH0pPC7oKq3--5DtrjydmnqGjjlKTDo84OTCwrED9-VuZHxCcpGVKv91EQZbrJCOaiBocA.rEDyJC8RAldpA08G4zQjwcC0cD2gXGbh77GQoArD03M] + ocp-aad-diagnostics-server-name: [qbLQHeemSYnF6GFzxWPxyco92r/HwDdCBwNHurdokdI=] + ocp-aad-session-key: [3OXyf87B081eQJL5otzmxCPIWSlQxqry7ZiAtm2CoR14ZTtL4G3QsYod9bfqP5tny487wvhdK7WnFmQhOwLnahO9syIu9DTK7-VyREA42aMCQnlGZKVpB_JGkvbMHr0i7lfIohtFG3YobdAI6l94QA.KB00GLbIIizaWsASL-uzxSXMY4PcV_i6fMAMBBzhBV0] pragma: [no-cache] - request-id: [7eb0145c-e10a-4e36-889e-e8a11d9c0060] + request-id: [459996a0-0461-4efa-ac31-e8bd6e91f830] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1480,30 +1536,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app update] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --set] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:59 GMT'] - duration: ['600101'] + date: ['Mon, 26 Nov 2018 03:17:36 GMT'] + duration: ['329518'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [FbAahKj+CAgBE9nDxnX/a9xy4bKzwpDul27qCyangJw=] - ocp-aad-session-key: [wjcxNftqADbK8Qe3r3iQlM7F2gNNLD5pYIgRPppC2muVGUaDNky75AEmNdJAz85WZLhkT5ctaI9jfQE99Ug_eoJ_0mgqg_Mx7cflYsJDid5qC7XV0H_YlucQ1IbK0NJFbeFuzo50JCZJy1j2t9g1Bg.MlOTYWUrAZJ02etLVrNE-9cMaUdXrZRcGdQuoyMfs8k] + ocp-aad-diagnostics-server-name: [sddddXJCDv27jmu91AjCY4cjIA04nWQAsEkxbrysAOg=] + ocp-aad-session-key: [gZwyqaZwMFnDN-O7JK4qGqHS8UYXPm7iY5sBtN8qJ-ppnyT0yIMh25_pWmEOzlbTKft_PTXgCjVeEYySDWtr3pkQmvgPZMIW0AfBf9dwh4xhp90ogo-ojmQXsdUXpuPPzDnm7eblQGD4TdGajh1zjw.dHgvGjcWb68DchQrnD3uJWeNhdbocreECh2HlGWaj6I] pragma: [no-cache] - request-id: [06c772a3-0cd6-4a0d-a6d4-c9e5667ad81a] + request-id: [d52a099a-34a1-4715-bc79-0e53235e3bf3] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1517,30 +1574,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app update] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --set] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2127'] + content-length: ['2179'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:59 GMT'] - duration: ['846479'] + date: ['Mon, 26 Nov 2018 03:17:37 GMT'] + duration: ['367636'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [9RY9kHjIF0sEXCnKZC1J9QU6hhbta/WWZ84XWn9UNrA=] - ocp-aad-session-key: [xP0lCatM-ZCt8C4qsoiAJ9AIwVDUqlqoLISG6vKygAadQKyjwS4TLXS0qjzaHlz460vDdYIXP5WAy49FopTK14T1EfceUIcOCi5rEVU9lVUpVMjO81AK5eXU64HScckd33P5g4Rwz9xaGZGGBHZlvQ.pcgqmwtpokTGJvLvDGCbL_Y0TXT_-yltX2IUWnALF_s] + ocp-aad-diagnostics-server-name: [qxvg+LgKyuIFTpm0XjmicPMsnZzmR6m/OWBxHpYTkp8=] + ocp-aad-session-key: [TWsBUzMijC1TO1vDI6KaCXbNwPZTtB8Y7OoUCUKxGt8qOrYLc4ZE2up6uyjrLAPgTsizyhI5GsZfvV5EhwBZfG3DStFDPDdXng_f4RIkD_o3CUzkyJyZLnm2I3RrjjGFgaUajvfvuCgS_tBPRbt6QA.bX6_UOuIYxSBsfmqldi7gZZR6zF6fYnAGmuQQe4WK8U] pragma: [no-cache] - request-id: [f078b49d-4b44-44d4-ad67-6b22874b030e] + request-id: [888ffa22-e41f-41ff-9ca0-6f169c618476] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1554,30 +1612,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app update] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --set] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2130'] + content-length: ['2182'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:44:59 GMT'] - duration: ['372893'] + date: ['Mon, 26 Nov 2018 03:17:37 GMT'] + duration: ['359726'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [YaUr/QI8BdH2+9T2GuYNq7DhUfKmqQhjXjhZvXluhlA=] - ocp-aad-session-key: [e_ogkjnDQz81GiwM9KzByOKzzY8Oijoshe5XzsRAUWKSw1XUYff_WtkVEbVAXnCQ3srMuUFyq3cqpEMYW-cdPgQz1WGiz-qU0hUGXrvQyJhORB3l3aTrjDx4KazTchwW7QXhM0-4zdpP6v7b5CF8_g.psfJLSnN-UcJlHrBQirLrasL79_L4x9p0SPEXMGo8Ow] + ocp-aad-diagnostics-server-name: [zPeOuJeNLZ5N5CAKU8XN6jsJ5sC6cSv6Gh6WpNy3E8g=] + ocp-aad-session-key: [LkuxAeINv9cHdUUjJOOavdrxmbrF8T41hAQN0bIvmYp2-ZiGm1TKfyWcIuuktuu-_TusaWH8VkB6rY5CRLo3LWvaO6greE8YqDtqT9luTExgxX2ni3fYxttWhhv8yVW5kXAZUoEGuLbabYOJyR3E4Q.Iqvsjr71k02U22wkZTZdUQ1D2T24l3AkEBe02yC6ebw] pragma: [no-cache] - request-id: [22d41456-f1bd-44e0-91e1-84ffe2250584] + request-id: [faaf342e-bbc0-4338-b0f7-919a7d4e8611] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1585,10 +1644,10 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: 'b''{"requiredResourceAccess": [], "homepage": "https://cli-app-000001", - "identifierUris": ["http://cli-app-000001"], "availableToOtherTenants": false, - "oauth2AllowImplicitFlow": false, "displayName": "cli-app-000001", "groupMembershipClaims": - "All", "replyUrls": []}''' + body: 'b''{"identifierUris": ["http://cli-app-000001"], "replyUrls": [], "groupMembershipClaims": + "All", "availableToOtherTenants": false, "homepage": "https://cli-app-000001", + "requiredResourceAccess": [], "displayName": "cli-app-000001", "oauth2AllowImplicitFlow": + false}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -1596,24 +1655,26 @@ interactions: Connection: [keep-alive] Content-Length: ['266'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id --set] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] dataserviceversion: [1.0;] - date: ['Sat, 10 Nov 2018 00:45:00 GMT'] - duration: ['3383526'] + date: ['Mon, 26 Nov 2018 03:17:38 GMT'] + duration: ['3639761'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [DGINaJ3i+5SyHOHPqmgh7imYwy5/IDDbJ0mu/cXzqrE=] - ocp-aad-session-key: [hOuKcRn-eYW3Ti6V6jqtjqqsUangBZfG6SenpVR5wxc5fb6UxmqU4FqnYe1jG-Gkg7FMyNfbYzTkfakH3ykf1zhmHVvipRyS6UWAzDptd5vdCJE1IU9C4sF3c5wkQPYV9BpBRO608GBFRRiPG7uLbQ.jA0KQXyquI43PslDnYVlgWUl_IVQjxBPlNfHwC_E8oU] + ocp-aad-diagnostics-server-name: [79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo=] + ocp-aad-session-key: [XJ0XU37cwJactyVniFo1PO2PutvBUf4XWWuYLi4KC_jfaj0UshLde4hQXKdRWf2_NWvq4QXQAbTITH0oUOA2dvtR6sB0X-JthCNOU5CcYD1U_pvCJ3JzshzJzcUGLqEhX52985pQeoraO-CVuIftGg.2GvBdQREbMlriDyRbCYk3TWI-DXY15HOpu7yHaG-DU4] pragma: [no-cache] - request-id: [38bc7d26-5e1e-4c29-ad8f-f3b88e32a03b] + request-id: [f4202ac2-d91b-4446-b6e6-2570119280a0] + server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] @@ -1627,30 +1688,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app show] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli-app-000001%27%29 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2131'] + content-length: ['2183'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:45:00 GMT'] - duration: ['406336'] + date: ['Mon, 26 Nov 2018 03:17:39 GMT'] + duration: ['388233'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [qS43F4iLBOJT6RGkkYs1XEqkZVQTuWFJkKZZm/yzJso=] - ocp-aad-session-key: [lSA1IeErP_qu_R85vYg8M-JnpdMov6hrK15B4AW67UcCA1EW184Jbv1IV39dZtRYqBy8VXcnKPt41z-o7TdNQjFNS7y4D6WOHhLQ3VwdoTStZNnOtiEzq-1cJJT8fHdZG2QRD6_bhuCWcI9b9obupA.zMWvBKKyjUV82UxaCNvTrNDKaPq0hguyK3DhYfYIUv4] + ocp-aad-diagnostics-server-name: [USO0vXsiH/WugU0+xVoguNv4Wxgbvvn8Zb8qUwfOkVw=] + ocp-aad-session-key: [46FgZnryONA79Cm_cLb-_7lsWoT9KJCnaVNC5m-096d931ugwyV-v-1zJO45ZhlhZtCjOg7Xtt0ADxi707Ljy60dcULwPtAu5unzXMfx18QWqiXEICSe6bGk3EZTZoqhjSxpBVdKHz6QZarlBhfdHQ.wnmVrAjgkT5aXRk5NbUbkyWeMoToHmaAaN6QsWKpSS4] pragma: [no-cache] - request-id: [88915470-c684-44c9-ad29-5d30e189040f] + request-id: [dfa879bb-323c-488c-b63e-dc0aacac965c] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1664,30 +1726,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app show] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2128'] + content-length: ['2180'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:45:00 GMT'] - duration: ['688481'] + date: ['Mon, 26 Nov 2018 03:17:39 GMT'] + duration: ['611038'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [r0o8Zfv+/EsfSzvffV1oL1MCccQ68EumyGGwG7/SNv8=] - ocp-aad-session-key: [u5_jjK1kX-se4lMAjLLZVII7dgEixX4wOTuubK5XP14stSo1ZhqcN2IH0Nxv4IEGt1dreRfAIqg50959qWK_-vEXxklRtE6A9xIh8Z0XU653KAuGtQrVKK8SnjTFMTi2CHqv7jmUynYr8gXEseyoOQ.aWK_qGcZNCByZJhij8ILyIT0pc3TmA92fOJAsMmlr-I] + ocp-aad-diagnostics-server-name: [ILMkzWumkrWELq2LNz8qYyobu9xzF6HY59qlW8ycA44=] + ocp-aad-session-key: [2cXgtCvBrn_J2FDHLds0_In6h-iL147D49_LV_zbxqcfaXSiKtYwscthJvdvw0-fIQzHW-t0Kt4xMpEFx8B4XyC-pmSBx-Yyr93lLf5L2lsV5nL02KhG8EYo0z-q_iaVLJimyFai3pANd10VPQ6Fyg.o2DE740aCHfv7TIdyf__sWg2qIm-MWQvZEtcR1VnJmk] pragma: [no-cache] - request-id: [deabd2c6-c91e-4eb6-aa27-5d88596a88a8] + request-id: [60ca3d63-4a07-47bb-999b-be95858fb9f6] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1701,11 +1764,12 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27%29 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=identifierUris%2Fany%28s%3As%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27%29 response: body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'} headers: @@ -1714,13 +1778,13 @@ interactions: content-length: ['121'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:45:02 GMT'] - duration: ['368241'] + date: ['Mon, 26 Nov 2018 03:17:40 GMT'] + duration: ['304981'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [79iHEFv08Z5eYiqEE8bs8QssJ8Mw1GK/njyBHhNtDbo=] - ocp-aad-session-key: [l6OROQoDw9JHKCBAqKVNqL8rAVrWuognYU2-RgntnWoAw2RzisRaqINvsxHxkKf8hSpdRvf5cbyH6mqqvyqZXiw-Yascncw1zmWfVnPX-N56edeRIHVKsw7rC_GgmW8rKnibFbphTDqs_2uxib8xSg.G9oI2815fIGKtaPeFxY6DnVAWW2neh0FdtEH_gPa5zw] + ocp-aad-diagnostics-server-name: [/lC86iJ3cwwJGyTWjAKYWDPkB/lyglon9hmrn0nLUXM=] + ocp-aad-session-key: [Q-bO6UazawlrU8ADscW7SvKW-pRTE_D6BXYW9YhJg1OaxfE65q4cZKDF4KwyzIeLZoid_812VWVRwNeiOm92IdEVo3_L4p5RIe0uo2ZRwPbjRPEVkORwoBY5D-FOnHVAys8dxzdERvZeMgxPRtMwjQ.HceIpUYZGqPu6VdRWytvtehg0MI5T6snwXZS4-Ib794] pragma: [no-cache] - request-id: [d5e15237-422f-4e90-982e-2ad44343f349] + request-id: [25cbd44c-9397-450b-b7a2-6aea349cca7a] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1734,30 +1798,31 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [ad app delete] Connection: [keep-alive] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%27565c2e77-5648-4a12-8458-4ec8df513abe%27 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6&$filter=appId%20eq%20%279a0892fc-a72f-4e64-8499-31e813f205f5%27 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":"d8682b75-8a96-45fe-b88d-621e7a92862a","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"565c2e77-5648-4a12-8458-4ec8df513abe","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/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/d8682b75-8a96-45fe-b88d-621e7a92862a/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f7058ad9-ab6c-4337-badc-9b8841461581","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"9a0892fc-a72f-4e64-8499-31e813f205f5","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/f7058ad9-ab6c-4337-badc-9b8841461581/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/f7058ad9-ab6c-4337-badc-9b8841461581/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":"ce51edb1-d764-4224-9a7f-9463808cc8b2","isEnabled":true,"type":"User","userConsentDescription":"Allow + cli-app-000001","id":"40bc868a-651c-4b0b-9ddf-ce4fd350164e","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":null,"endDate":"2019-11-10T00:44:56.106994Z","keyId":"760fb81b-7135-4440-94ec-37dfd440b85f","startDate":"2018-11-10T00:44:56.106994Z","value":null}],"publicClient":null,"publisherDomain":null,"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":"2019-11-26T03:17:28.781865Z","keyId":"b3756d13-fcc4-4eac-9283-8ae98ee2661b","startDate":"2018-11-26T03:17:28.781865Z","value":null}],"publicClient":null,"publisherDomain":"walterwyghotmail.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}'} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - content-length: ['2131'] + content-length: ['2183'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Sat, 10 Nov 2018 00:45:01 GMT'] - duration: ['405116'] + date: ['Mon, 26 Nov 2018 03:17:41 GMT'] + duration: ['579269'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [QcP18MNEK2rsGylMGJVNHi5HXYCSyZTWD43M/CKGhl4=] - ocp-aad-session-key: [1BkQ7Qbgl768-JimYFIp8MmyfSMjGHjSYfKfbohUqh6YETMCvptsTWcIPumdA2PlEYPSE-epzAWpEA-y8wVk5vmlyMwUogxRKi09egTDG_zETclbnB_dEN0KJdgr0t0hWtKFcYPlwWCGYBp537EJEA.XUmQzZJZGc-3-15mhyzF_KacYyRZwFb-KVM0Dh3ZA9o] + ocp-aad-diagnostics-server-name: [TYqFcwXWOChFCYe863Ass3L6LUsoEAAlBpUkoGumdpw=] + ocp-aad-session-key: [nJ7jkAXW4K2sZ6k1eNNGo5CUJlweChRujcaJxe9SDp4Lr55HSLFJ-GVZPZw2IvTTcpcvLh-Lrx2V0uxzjQ1iWu8D99YVaRLj4Y7lJECRQXw2a_vgFVRYa7tK53FZSMKCz2OWjd3sYc6UumHmfFA9bA.sV2fEiEIw34qvMdNZyjIm82CzkErlJydVDyNwXYjEDk] pragma: [no-cache] - request-id: [ffa0f2ad-29f7-4486-9664-7320049b77de] + request-id: [b058bf6d-b4ad-47c2-ac27-9379fa67e61a] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -1772,23 +1837,24 @@ interactions: CommandName: [ad app delete] Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) msrest/0.6.0 msrest_azure/0.5.1 - azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] + ParameterSetName: [--id] + User-Agent: [python/3.5.4 (Windows-10-10.0.17763-SP0) requests/2.20.1 msrest/0.5.4 + msrest_azure/0.4.34 azure-graphrbac/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.51] accept-language: [en-US] method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/d8682b75-8a96-45fe-b88d-621e7a92862a?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f7058ad9-ab6c-4337-badc-9b8841461581?api-version=1.6 response: body: {string: ''} headers: access-control-allow-origin: ['*'] cache-control: [no-cache] - date: ['Sat, 10 Nov 2018 00:45:02 GMT'] - duration: ['3355116'] + date: ['Mon, 26 Nov 2018 03:17:42 GMT'] + duration: ['3663378'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [2Gv1gQSfiKJpA3rt4Mi13yQYs8l/cSGK1elzeDUE/p8=] - ocp-aad-session-key: [tSzaOxCiaSw38U2artpGcxPQ0m5Vg3eEIIkiKfmIBDt4gOZ-d_kXCWMRY0h3Ma5pdccTMDPh6hq_uwcbbTNn-aXpm0cNkSyd9QcF6jDFvsivSHz2u5FvkWFjGTj57Ev9DQr4IQNgXDuHvTy7Z8CwuA.hyHEu0J0q0BbNfJ5LsGhpQoZ7TbfpsmLNZkjVbsH_Zo] + ocp-aad-diagnostics-server-name: [wxTJ9LAVu6rJckmzKPdCGIT+txU9u3PTf1/IKRCG7+c=] + ocp-aad-session-key: [dpwst3XAEoii23nNb0FyAOqPhaDee1gvYzAD7u6UKawj2s4UhgzkZmhPJAivedm7rDB8tDG7rhCMJacNYi-PxjVq0gn5s6lVVvaKUsZayr6JNYx6pfwmvbXv4i72TY8QUDEV6Z0w5KGqlW2EZb0M_Q.fVRIXdzY0hruVh8y3-eoFKgrnpZGIf-gMVQKD3X8HdU] pragma: [no-cache] - request-id: [64df00e0-ad83-426a-8450-b5255024fc22] + request-id: [6ffba862-15db-4779-9518-a703d40d464c] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] 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 4bf6154aba6..14f8768711f 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 @@ -300,8 +300,12 @@ def test_graph_app_cred_e2e(self): 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') - self.cmd('ad sp credential list --id {app}', checks=self.check('length([*])', 2)).get_output_in_json() + self.cmd('ad sp credential reset -n {app} --password verySecert123 --append --credential-description newCred1') + self.cmd('ad sp credential list --id {app}', checks=[ + self.check('length([*])', 2), + self.check('[0].customKeyIdentifier', 'newCred1'), + self.check('[1].customKeyIdentifier', 'rbac') # auto configured by create-for-rbac + ]) self.cmd('ad sp credential delete --id {app} --key-id ' + key_id) result = self.cmd('ad sp credential list --id {app}', checks=self.check('length([*])', 1)).get_output_in_json() self.assertTrue(result[0]['keyId'] != key_id) @@ -309,8 +313,12 @@ 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') - self.cmd('ad app credential list --id {app}', checks=self.check('length([*])', 2)).get_output_in_json() + self.cmd('ad app credential reset --id {app} --password verySecert123 --append --credential-description newCred2') + result = self.cmd('ad app credential list --id {app}', checks=[ + self.check('length([*])', 2), + self.check('[0].customKeyIdentifier', 'newCred2'), + self.check('[1].customKeyIdentifier', 'newCred1') + ]) self.cmd('ad app credential delete --id {app} --key-id ' + key_id) self.cmd('ad app credential list --id {app}', checks=self.check('length([*])', 1)) diff --git a/src/command_modules/azure-cli-role/setup.py b/src/command_modules/azure-cli-role/setup.py index 8f51a153e41..e11939b9ee4 100644 --- a/src/command_modules/azure-cli-role/setup.py +++ b/src/command_modules/azure-cli-role/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.1.10" +VERSION = "2.1.11" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', @@ -34,7 +34,7 @@ 'azure-cli-core', 'azure-mgmt-authorization==0.50.0', 'azure-mgmt-monitor==0.5.2', - 'azure-graphrbac==0.52.0', + 'azure-graphrbac==0.53.0', 'azure-keyvault==1.1.0', 'pytz' ] diff --git a/src/command_modules/azure-cli-servicefabric/setup.py b/src/command_modules/azure-cli-servicefabric/setup.py index 0fe1d6cf1bc..c4be7ed111b 100644 --- a/src/command_modules/azure-cli-servicefabric/setup.py +++ b/src/command_modules/azure-cli-servicefabric/setup.py @@ -35,7 +35,7 @@ ] DEPENDENCIES = [ - 'azure-graphrbac==0.52.0', + 'azure-graphrbac==0.53.0', 'azure-keyvault==1.1.0', 'azure-mgmt-network==2.3.0', 'azure-mgmt-compute==4.3.1',